Skip to content

Commit

Permalink
v3.1.0 (#80)
Browse files Browse the repository at this point in the history
Co-authored-by: carmine <carmine@everco.ai>
  • Loading branch information
cdimascio and carmine authored Dec 16, 2024
1 parent 6d67cbf commit f9989e1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## (2024-12-15)

* Cmd/melegati ml (#79) ([6d67cbf](https://github.com/cdimascio/dotenv-java/commit/6d67cbf)), closes [#79](https://github.com/cdimascio/dotenv-java/issues/79)
* 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)
* 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)
* update README and CONTRIBUTING (#76) ([bd434e1](https://github.com/cdimascio/dotenv-java/commit/bd434e1)), closes [#76](https://github.com/cdimascio/dotenv-java/issues/76)



## (2024-09-01)

* 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)
Expand Down
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,26 +34,26 @@ _Still using Java 8? Use version 2.3.2_
<dependency>
<groupId>io.github.cdimascio</groupId>
<artifactId>dotenv-java</artifactId>
<version>3.0.0</version>
<version>3.1.0</version>
</dependency>
```

### Gradle <4.10

```groovy
compile 'io.github.cdimascio:dotenv-java:3.0.0'
compile 'io.github.cdimascio:dotenv-java:3.1.0'
```

### Gradle >=4.10

```groovy
implementation 'io.github.cdimascio:dotenv-java:3.0.0'
implementation 'io.github.cdimascio:dotenv-java:3.1.0'
```

### Gradle Kotlin DSL

```kotlin
implementation("io.github.cdimascio:dotenv-java:3.0.0")
implementation("io.github.cdimascio:dotenv-java:3.1.0")
```

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


Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>io.github.cdimascio</groupId>
<artifactId>dotenv-java</artifactId>
<version>3.0.2</version>
<version>3.1.0</version>

<licenses>
<license>
Expand Down

0 comments on commit f9989e1

Please sign in to comment.