Skip to content

Commit

Permalink
update version and changelog and readme for v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
UDLD committed Oct 25, 2019
1 parent 6bb0861 commit 523bcba
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
All notable changes to this project will be documented in this file.

# [v1.0.0](https://github.com/cryptape/cita-sdk-java/compare/v0.25.0...v1.0.0) (2019-08-28)

### Added

* add group manager RPC requests
* add matrix system test in travis

### Fixed
* fix test net url
* fix inPermission method not support function having parameters
* fix unit test in test module

### Documented
* add introduction document


# [v0.25.0](https://github.com/cryptape/cita-sdk-java/compare/v0.24.1...v0.25.0) (2019-08-27)

### Feature
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ maven
<dependency>
<groupId>com.cryptape.cita</groupId>
<artifactId>core</artifactId>
<version>0.25.0</version>
<version>1.0.0</version>
</dependency>
```
Gradle
```
compile 'com.cryptape.cita:core:0.25.0'
compile 'com.cryptape.cita:core:1.0.0'
```

Install manually
Expand Down Expand Up @@ -208,12 +208,12 @@ Gradle 5.0
<dependency>
<groupId>com.cryptape.cita</groupId>
<artifactId>core</artifactId>
<version>0.25.0</version>
<version>1.0.0</version>
</dependency>
```
Gradle
```
compile 'com.cryptape.cita:core:0.25.0'
compile 'com.cryptape.cita:core:1.0.0'
```

手动安装
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ allprojects {
targetCompatibility = 1.8

group 'com.cryptape.cita'
version '0.25.0'
version '1.0.0'

apply plugin: 'java'
apply plugin: 'jacoco'
Expand Down Expand Up @@ -145,7 +145,7 @@ configure(subprojects.findAll { it.name != 'integration-tests' }) {
publications {
mavenJava(MavenPublication) {
groupId 'com.cryptape.cita'
version '0.25.0'
version '1.0.0'
from components.java

artifact sourcesJar {
Expand Down

0 comments on commit 523bcba

Please sign in to comment.