Skip to content

Commit

Permalink
Preparing for 2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
SandroHc committed Feb 21, 2022
1 parent 816fc4d commit b548c91
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
- name: Test & Coverage
run: ./gradlew jacocoTestReport
- name: Upload to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v2
with:
file: ./build/reports/jacoco/test/jacocoTestReport.xml
files: ./build/reports/jacoco/test/jacocoTestReport.xml
- name: Artifacts
uses: actions/upload-artifact@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A fast and fully-typed API wrapper for the [Jikan API](https://jikan.moe) V4, wi
| API version | reactive-jikan version |
| ----------- |----------------------- |
| [V3](https://jikan.docs.apiary.io/) | [1.1.0](https://search.maven.org/artifact/net.sandrohc/reactive-jikan/1.1.0/jar) |
| [V4](https://docs.api.jikan.moe/) | [2.0.0-alpha](https://search.maven.org/artifact/net.sandrohc/reactive-jikan/2.0.0-alpha) |
| [V4](https://docs.api.jikan.moe/) | [2.0.0](https://search.maven.org/artifact/net.sandrohc/reactive-jikan/2.0.0) |


## Installation
Expand All @@ -21,7 +21,7 @@ Add the following dependency to your build file.
If using Gradle (`build.gradle`):
```groovy
dependencies {
implementation 'net.sandrohc:reactive-jikan:1.1.0'
implementation 'net.sandrohc:reactive-jikan:2.0.0'
}
```

Expand All @@ -30,7 +30,7 @@ If using Maven (`pom.xml`):
<dependency>
<groupId>net.sandrohc</groupId>
<artifactId>reactive-jikan</artifactId>
<version>1.1.0</version>
<version>2.0.0</version>
</dependency>
```

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

group 'net.sandrohc'
version '2.0.0-SNAPSHOT'
version '2.0.0'

ext.isReleaseVersion = !version.endsWith('SNAPSHOT')

Expand Down Expand Up @@ -101,7 +101,7 @@ publishing {
from components.java
pom {
name = 'Reactive Jikan'
description = 'API wrapper for Jikan - an unofficial MyAnimeList API - with the power of Project Reactor and reactive streams. ⚡'
description = 'A fast and fully-typed API wrapper for Jikan - an unofficial MyAnimeList API - with the power of Project Reactor and reactive streams. ⚡'
url = 'https://github.com/SandroHc/reactive-jikan'
licenses {
license {
Expand Down

0 comments on commit b548c91

Please sign in to comment.