Skip to content

Commit

Permalink
v6.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
carmine committed Dec 16, 2024
1 parent b5d67db commit e5481ad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ Looking for the pure Java variant (no Kotlin), get [dotenv-java](https://github.
### Gradle
#### Gradle Groovy DSL
```groovy
implementation 'io.github.cdimascio:dotenv-kotlin:6.4.2'
implementation 'io.github.cdimascio:dotenv-kotlin:6.5.0'
```

#### Gradle Kotlin DSL
```kotlin
implementation("io.github.cdimascio:dotenv-kotlin:6.4.2")
implementation("io.github.cdimascio:dotenv-kotlin:6.5.0")
```

## Usage
Expand All @@ -58,6 +58,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
MY_ENV_MULTI_LINE="some
multiline
value"
```

With **Java**
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>io.github.cdimascio</groupId>
<artifactId>dotenv-kotlin</artifactId>
<version>6.4.2</version>
<version>6.5.0</version>

<licenses>
<license>
Expand Down Expand Up @@ -49,7 +49,7 @@
</developers>

<properties>
<dotenv.version>3.0.2</dotenv.version>
<dotenv.version>3.1.0</dotenv.version>
<maven.compiler.release>11</maven.compiler.release>
<kotlin.version>1.9.22</kotlin.version>
<main.class>io.cdimascio.DotenvKt</main.class>
Expand Down

0 comments on commit e5481ad

Please sign in to comment.