@@ -20,8 +20,6 @@ A community developed Java SDK to interact with the Æternity blockchain.
2020
2121## Latest stable release
2222
23- - [ v1.0.2] ( https://github.com/kryptokrauts/aepp-sdk-java/releases/tag/v1.0.2 )
24-
2523### Download
2624
2725 [ ![ Download] ( https://api.bintray.com/packages/kryptokrauts/maven/aepp-sdk-java/images/download.svg ) ] ( https://bintray.com/kryptokrauts/maven/aepp-sdk-java/_latestVersion )
@@ -40,7 +38,7 @@ A community developed Java SDK to interact with the Æternity blockchain.
4038<dependency >
4139 <groupId >com.kryptokrauts</groupId >
4240 <artifactId >aepp-sdk-java</artifactId >
43- <version >1.0.2 </version >
41+ <version >1.1.0 </version >
4442</dependency >
4543...
4644```
@@ -52,7 +50,7 @@ repositories {
5250 jcenter()
5351}
5452
55- compile "com.kryptokrauts:aepp-sdk-java:1.0.2 "
53+ compile "com.kryptokrauts:aepp-sdk-java:1.1.0 "
5654```
5755
5856### Snapshots
@@ -82,7 +80,7 @@ Here's the [list of snapshot versions](https://oss.jfrog.org/webapp/#/artifacts/
8280 <dependency >
8381 <groupId >com.kryptokrauts</groupId >
8482 <artifactId >aepp-sdk-java</artifactId >
85- <version >1.0.3 -SNAPSHOT</version >
83+ <version >1.1.1 -SNAPSHOT</version >
8684 </dependency >
8785</dependencies >
8886...
@@ -95,9 +93,16 @@ repositories {
9593 maven { url "https://oss.jfrog.org/artifactory/oss-snapshot-local" }
9694}
9795
98- compile "com.kryptokrauts:aepp-sdk-java:1.0.3 -SNAPSHOT"
96+ compile "com.kryptokrauts:aepp-sdk-java:1.1.1 -SNAPSHOT"
9997```
10098
99+ ### Release notes
100+
101+ - [ v1.1.0] ( docs/release-notes/RELEASE-NOTES-1.1.0.md )
102+ - [ v1.0.2] ( docs/release-notes/RELEASE-NOTES-1.0.2.md )
103+ - [ v1.0.1] ( docs/release-notes/RELEASE-NOTES-1.0.1.md )
104+ - [ v1.0.0] ( docs/release-notes/RELEASE-NOTES-1.0.0.md )
105+
101106## Documentation
102107
103108The services of the SDK can be accessed using the factory pattern. Every service has its own factory which allows to get the service either with default config (` ae_uat ` using ` https://sdk-testnet.aepps.com/v2 ` ) or using a XServiceConfiguration builder pattern configuration object:
@@ -212,12 +217,6 @@ BaseKeyPair generatedDerivedKey =
212217 keyPairService.generateDerivedKey(master, true).toRawKeyPair());
213218```
214219
215- ## Release notes
216-
217- - [ v1.0.2] ( docs/release-notes/RELEASE-NOTES-1.0.2.md )
218- - [ v1.0.1] ( docs/release-notes/RELEASE-NOTES-1.0.1.md )
219- - [ v1.0.0] ( docs/release-notes/RELEASE-NOTES-1.0.0.md )
220-
221220## License
222221
223222Licensed under the [ ISC License] ( LICENSE )
0 commit comments