Skip to content

Commit

Permalink
version 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Legion2 committed Aug 25, 2021
1 parent 7729f53 commit 3e3425b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ Add the dependency to your project:
<dependency>
<groupId>de.voize</groupId>
<artifactId>semver4k</artifactId>
<version>4.0.2</version>
<version>4.1.0</version>
</dependency>
```

#### Using gradle

```kotlin
implementation("de.voize:semver4k:4.0.2")
implementation("de.voize:semver4k:4.1.0")
```

## Usage
Expand Down Expand Up @@ -180,6 +180,7 @@ You can also use built-in versioning methods such as:
- `nextMajor()`: `1.2.3-beta.4+sha32iddfu987 => 2.0.0`
- `nextMinor()`: `1.2.3-beta.4+sha32iddfu987 => 1.3.0`
- `nextPatch()`: `1.2.3-beta.4+sha32iddfu987 => 1.2.4`
- `nextIncrement()`: `1.2.3-beta.4+sha32iddfu987 => 1.2.3-beta.5+sha32iddfu987`

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "de.voize"
version = "4.0.2"
version = "4.1.0"

repositories {
mavenCentral()
Expand Down

0 comments on commit 3e3425b

Please sign in to comment.