Skip to content

Commit

Permalink
Bump version to 1.0.0 - first stable release
Browse files Browse the repository at this point in the history
  • Loading branch information
SandroHc committed Nov 22, 2020
1 parent ef4cc0e commit c707317
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ allprojects {
}
dependencies {
implementation 'net.sandrohc:reactive-jikan:0.1.2'
implementation 'net.sandrohc:reactive-jikan:1.0.0'
}
```

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

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

group 'net.sandrohc'
version '0.1.2'
version '1.0.0'

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
1 change: 1 addition & 0 deletions src/test/java/net/sandrohc/jikan/test/RequestClubTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ void fetchMembers() {
int hash = m2.hashCode();

ClubMembers l = new ClubMembers();
assertNotNull(l.toString());
assertEquals(l, l);
assertEquals(l, SerializationUtils.clone(l));
assertNotEquals(l, new Object());
Expand Down

0 comments on commit c707317

Please sign in to comment.