diff --git a/CHANGELOG.md b/CHANGELOG.md index aadabd51..5ebc8483 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 1db57727..b21a28a7 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,12 @@ maven com.cryptape.cita core - 0.25.0 + 1.0.0 ``` Gradle ``` -compile 'com.cryptape.cita:core:0.25.0' +compile 'com.cryptape.cita:core:1.0.0' ``` Install manually @@ -208,12 +208,12 @@ Gradle 5.0 com.cryptape.cita core - 0.25.0 + 1.0.0 ``` Gradle ``` -compile 'com.cryptape.cita:core:0.25.0' +compile 'com.cryptape.cita:core:1.0.0' ``` 手动安装 diff --git a/build.gradle b/build.gradle index 89617197..c52b3959 100644 --- a/build.gradle +++ b/build.gradle @@ -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' @@ -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 {