Skip to content

Commit b1e54fe

Browse files
committed
changed version and added release notes for version 1.1.0
1 parent 72b9872 commit b1e54fe

File tree

3 files changed

+53
-13
lines changed

3 files changed

+53
-13
lines changed

README.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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

103108
The 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

223222
Licensed under the [ISC License](LICENSE)
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Release notes ([v1.1.0](https://github.com/kryptokrauts/aepp-sdk-java/releases/tag/v1.1.0))
2+
3+
## Breaking changes
4+
5+
- Transactions are now created through a central `TransactionFactory`
6+
- this refactoring breaks implementations that used older versions of the SDK
7+
- please check the [documentation](../../../../#documentation) for required changes
8+
9+
## General changes
10+
11+
- [#13](../../../../issues/13) upgrade to new Æternity release 2.0.0 (`Minerva`)
12+
- updated [documentation](../../../../#documentation)
13+
14+
## New Features
15+
16+
- [#6](../../../../issues/6) HD wallet support (BIP44, BIP32 + BIP39)
17+
- it is now possible to create and recover HD wallets
18+
- [#11](../../../../issues/11) Fees (gas cost) calculation
19+
- Æternity release 2.0.0 (`Minerva`) introduced a new fee structure
20+
- the SDK now provides an automated fee calculation if the user doesn't provide a fee on his/her own
21+
22+
## Contributors
23+
24+
Everybody is welcome to contribute to this project. Following people contributed to this release:
25+
26+
- [Marco Walz](https://github.com/marc0olo)
27+
- [Michel Meier](https://github.com/mitch-lbw)
28+
29+
## What's next?
30+
31+
- you can follow our [new features](../../../../projects/1) project board to see what we are currently working on
32+
33+
## Support us
34+
35+
If you like this project we would appreciate your support.
36+
37+
- [ak_5z1fmzTKR1GA1P7qiLDCC1s3V7AK2RRpNbXqUhfHQbUeg7mmV](https://explorer.aepps.com/#/account/ak_5z1fmzTKR1GA1P7qiLDCC1s3V7AK2RRpNbXqUhfHQbUeg7mmV)
38+
39+
![ak_5z1fmzTKR1GA1P7qiLDCC1s3V7AK2RRpNbXqUhfHQbUeg7mmV](../../donations.png)
40+
41+
(QR-code generated with https://cwaqrgen.com/aeternity)

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
organization=kryptokrauts
22
group=com.kryptokrauts
33
name=aepp-sdk-java
4-
version=1.0.3-SNAPSHOT
4+
version=1.1.0-SNAPSHOT

0 commit comments

Comments
 (0)