Skip to content

Commit

Permalink
Change version from 2.0.1 to 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
viepovsky committed Dec 18, 2023
1 parent ad8c19c commit be8b69e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# PESEL
[![Maven central repository](https://img.shields.io/maven-central/v/io.github.viepovsky/pesel?style=plastic&versionPrefix=2.0.1)](https://central.sonatype.com/artifact/io.github.viepovsky/pesel/2.0.1/overview)
[![Maven central repository](https://img.shields.io/maven-central/v/io.github.viepovsky/pesel?style=plastic&versionPrefix=2.0.2)](https://central.sonatype.com/artifact/io.github.viepovsky/pesel/2.0.2/overview)
[![Build and test](https://img.shields.io/github/actions/workflow/status/viepovsky/PESEL/gradle.yml?style=plastic)](https://github.com/viepovsky/PESEL/actions/workflows/gradle.yml)
[![Codecov coverage](https://img.shields.io/codecov/c/github/viepovsky/PESEL?style=plastic)](https://codecov.io/github/viepovsky/PESEL)
[![License MIT](https://img.shields.io/github/license/viepovsky/PESEL?style=plastic)](https://github.com/viepovsky/PESEL/blob/master/LICENSE)
Expand All @@ -18,14 +18,14 @@ You can read more about PESEL [**here**](https://en.wikipedia.org/wiki/PESEL)

## Installation

The `PESEL` library is available in the [Maven Central Repository](https://central.sonatype.com/artifact/io.github.viepovsky/pesel/2.0.1/overview).
The `PESEL` library is available in the [Maven Central Repository](https://central.sonatype.com/artifact/io.github.viepovsky/pesel/2.0.2/overview).

### Gradle

To use `PESEL` in a Gradle project, add the following line to your `build.gradle` file:

```java
implementation 'io.github.viepovsky:pesel:2.0.1'
implementation 'io.github.viepovsky:pesel:2.0.2'
```

### Maven
Expand All @@ -36,7 +36,7 @@ To use `PESEL` in a Maven project, add the following code to your `pom.xml` file
<dependency>
<groupId>io.github.viepovsky</groupId>
<artifactId>pesel</artifactId>
<version>2.0.1</version>
<version>2.0.2</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jacocoTestReport {
}

group 'io.github.viepovsky'
version '2.0.1'
version '2.0.2'

repositories {
mavenCentral()
Expand All @@ -39,7 +39,7 @@ publishing {
mavenJava(MavenPublication) {
groupId = 'io.github.viepovsky'
artifactId = 'pesel'
version = "2.0.1"
version = "2.0.2"
from components.java

pom {
Expand Down

0 comments on commit be8b69e

Please sign in to comment.