Skip to content

Commit f9989e1

Browse files
cdimasciocarmine
and
carmine
authoredDec 16, 2024
v3.1.0 (#80)
Co-authored-by: carmine <carmine@everco.ai>
1 parent 6d67cbf commit f9989e1

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed
 

‎CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## (2024-12-15)
2+
3+
* Cmd/melegati ml (#79) ([6d67cbf](https://github.com/cdimascio/dotenv-java/commit/6d67cbf)), closes [#79](https://github.com/cdimascio/dotenv-java/issues/79)
4+
* Handling real multi line entries. (#78) ([f3c43ec](https://github.com/cdimascio/dotenv-java/commit/f3c43ec)), closes [#78](https://github.com/cdimascio/dotenv-java/issues/78)
5+
* Update build workflow to upload JaCoCo code coverage report to https://codacy.com (#54) ([655d880](https://github.com/cdimascio/dotenv-java/commit/655d880)), closes [#54](https://github.com/cdimascio/dotenv-java/issues/54)
6+
* update README and CONTRIBUTING (#76) ([bd434e1](https://github.com/cdimascio/dotenv-java/commit/bd434e1)), closes [#76](https://github.com/cdimascio/dotenv-java/issues/76)
7+
8+
9+
110
## (2024-09-01)
211

312
* Delete .github/workflows/codeql.yml (#71) ([c52803f](https://github.com/cdimascio/dotenv-java/commit/c52803f)), closes [#71](https://github.com/cdimascio/dotenv-java/issues/71) [#70](https://github.com/cdimascio/dotenv-java/issues/70) [#69](https://github.com/cdimascio/dotenv-java/issues/69)

‎README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -34,26 +34,26 @@ _Still using Java 8? Use version 2.3.2_
3434
<dependency>
3535
<groupId>io.github.cdimascio</groupId>
3636
<artifactId>dotenv-java</artifactId>
37-
<version>3.0.0</version>
37+
<version>3.1.0</version>
3838
</dependency>
3939
```
4040

4141
### Gradle <4.10
4242

4343
```groovy
44-
compile 'io.github.cdimascio:dotenv-java:3.0.0'
44+
compile 'io.github.cdimascio:dotenv-java:3.1.0'
4545
```
4646

4747
### Gradle >=4.10
4848

4949
```groovy
50-
implementation 'io.github.cdimascio:dotenv-java:3.0.0'
50+
implementation 'io.github.cdimascio:dotenv-java:3.1.0'
5151
```
5252

5353
### Gradle Kotlin DSL
5454

5555
```kotlin
56-
implementation("io.github.cdimascio:dotenv-java:3.0.0")
56+
implementation("io.github.cdimascio:dotenv-java:3.1.0")
5757
```
5858

5959
Looking for the Kotlin variant? **get [dotenv-kotlin](https://github.com/cdimascio/dotenv-kotlin)**.
@@ -67,6 +67,9 @@ Create a `.env` file in the root of your project
6767
# formatted as key=value
6868
MY_ENV_VAR1=some_value
6969
MY_EVV_VAR2=some_value #some value comment
70+
MULTI_LINE="some
71+
multi line
72+
value"
7073
```
7174

7275

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>io.github.cdimascio</groupId>
1313
<artifactId>dotenv-java</artifactId>
14-
<version>3.0.2</version>
14+
<version>3.1.0</version>
1515

1616
<licenses>
1717
<license>

0 commit comments

Comments
 (0)