Skip to content

Commit 006fc25

Browse files
authoredNov 23, 2022
Update README.md
1 parent abe4108 commit 006fc25

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,26 +32,26 @@ _Requires Java 8 or greater._
3232
<dependency>
3333
<groupId>io.github.cdimascio</groupId>
3434
<artifactId>dotenv-java</artifactId>
35-
<version>2.3.0</version>
35+
<version>2.3.1</version>
3636
</dependency>
3737
```
3838

3939
### Gradle <4.10
4040

4141
```groovy
42-
compile 'io.github.cdimascio:dotenv-java:2.3.0'
42+
compile 'io.github.cdimascio:dotenv-java:2.3.1'
4343
```
4444

4545
### Gradle >=4.10
4646

4747
```groovy
48-
implementation 'io.github.cdimascio:dotenv-java:2.3.0'
48+
implementation 'io.github.cdimascio:dotenv-java:2.3.1'
4949
```
5050

5151
### Gradle Kotlin DSL
5252

5353
```kotlin
54-
implementation("io.github.cdimascio:dotenv-java:2.3.0")
54+
implementation("io.github.cdimascio:dotenv-java:2.3.1")
5555
```
5656

5757
Looking for the Kotlin variant? **get [dotenv-kotlin](https://github.com/cdimascio/dotenv-kotlin)**.
@@ -64,7 +64,7 @@ Create a `.env` file in the root of your project
6464
```dosini
6565
# formatted as key=value
6666
MY_ENV_VAR1=some_value
67-
MY_EVV_VAR2=some_value
67+
MY_EVV_VAR2=some_value #some value comment
6868
```
6969

7070

0 commit comments

Comments
 (0)
Please sign in to comment.