Skip to content

Commit 68c5514

Browse files
author
carmine
committed
v6.4.2
1 parent 4a9cc06 commit 68c5514

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

CONTRIBUTING.md

+13
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,16 @@ mvn clean package dokka:javadocJar deploy -DperformRelease=true
7272
```
7373

7474
Go to SonaType: https://oss.sonatype.org/#stagingRepositories - select repository -> close -> (once closed) release
75+
76+
## Publish raw artifacts / binaries
77+
78+
### Generate
79+
Generate signed artifacts locally
80+
```shell
81+
mvn verify -P release-sign-artifacts -DperformRelease=true
82+
```
83+
84+
### Publish to github release
85+
```shell
86+
gh release upload v6.4.2 target/*.jar.asc --clobber
87+
```

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Looking for the pure Java variant (no Kotlin), get [dotenv-java](https://github.
3232
<dependency>
3333
<groupId>io.github.cdimascio</groupId>
3434
<artifactId>dotenv-kotlin</artifactId>
35-
<version>6.4.1</version>
35+
<version>6.4.2</version>
3636
</dependency>
3737
```
3838

@@ -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.1'
44+
implementation 'io.github.cdimascio:dotenv-kotlin:6.4.2'
4545
```
4646

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

5252
## Usage

0 commit comments

Comments
 (0)