Skip to content

Commit e5481ad

Browse files
author
carmine
committed
v6.5.0
1 parent b5d67db commit e5481ad

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ Looking for the pure Java variant (no Kotlin), get [dotenv-java](https://github.
4141
### Gradle
4242
#### Gradle Groovy DSL
4343
```groovy
44-
implementation 'io.github.cdimascio:dotenv-kotlin:6.4.2'
44+
implementation 'io.github.cdimascio:dotenv-kotlin:6.5.0'
4545
```
4646

4747
#### Gradle Kotlin DSL
4848
```kotlin
49-
implementation("io.github.cdimascio:dotenv-kotlin:6.4.2")
49+
implementation("io.github.cdimascio:dotenv-kotlin:6.5.0")
5050
```
5151

5252
## Usage
@@ -58,6 +58,9 @@ Create a `.env` file in the root of your project
5858
# formatted as key=value
5959
MY_ENV_VAR1=some_value
6060
MY_EVV_VAR2=some_value
61+
MY_ENV_MULTI_LINE="some
62+
multiline
63+
value"
6164
```
6265

6366
With **Java**

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<groupId>io.github.cdimascio</groupId>
1212
<artifactId>dotenv-kotlin</artifactId>
13-
<version>6.4.2</version>
13+
<version>6.5.0</version>
1414

1515
<licenses>
1616
<license>
@@ -49,7 +49,7 @@
4949
</developers>
5050

5151
<properties>
52-
<dotenv.version>3.0.2</dotenv.version>
52+
<dotenv.version>3.1.0</dotenv.version>
5353
<maven.compiler.release>11</maven.compiler.release>
5454
<kotlin.version>1.9.22</kotlin.version>
5555
<main.class>io.cdimascio.DotenvKt</main.class>

0 commit comments

Comments
 (0)