Skip to content

Commit

Permalink
v6.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
carmine committed Sep 2, 2024
1 parent 4a9cc06 commit 68c5514
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,16 @@ mvn clean package dokka:javadocJar deploy -DperformRelease=true
```

Go to SonaType: https://oss.sonatype.org/#stagingRepositories - select repository -> close -> (once closed) release

## Publish raw artifacts / binaries

### Generate
Generate signed artifacts locally
```shell
mvn verify -P release-sign-artifacts -DperformRelease=true
```

### Publish to github release
```shell
gh release upload v6.4.2 target/*.jar.asc --clobber
```
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Looking for the pure Java variant (no Kotlin), get [dotenv-java](https://github.
<dependency>
<groupId>io.github.cdimascio</groupId>
<artifactId>dotenv-kotlin</artifactId>
<version>6.4.1</version>
<version>6.4.2</version>
</dependency>
```

Expand All @@ -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.1'
implementation 'io.github.cdimascio:dotenv-kotlin:6.4.2'
```

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

## Usage
Expand Down

0 comments on commit 68c5514

Please sign in to comment.