Skip to content
This repository has been archived by the owner on Oct 18, 2022. It is now read-only.

Commit

Permalink
Bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
notmandatory committed Oct 24, 2021
1 parent da601a3 commit 99e8f2b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
target
**/*.rs.bk
Cargo.lock

**/*.so
.idea
.gradle
local.properties
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v0.3.0]

- Upgrade bdk to v0.11.0
- Add new `WalletConstructor` parameters: `electrum_proxy`, `electrum_retry`, `electrum_timeout`, and `electrum_stop_gap`
- Add new `Lib.get_last_unused_address()` function
Expand Down Expand Up @@ -42,5 +44,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
#### Fixed
- Fix crashes on errors

[unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.2.0...HEAD
[unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.3.0...HEAD
[v0.2.0]: https://github.com/bitcoindevkit/bdk-jni/compare/v0.2.0...v0.3.0
[v0.2.0]: https://github.com/bitcoindevkit/bdk-jni/compare/d08725cc...v0.2.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ and used locally in the IDE. Because you added your local Maven repository to yo
file, you can now simply add `bdk-android` or `bdk-android-debug` to your `app/build.gradle` dependencies:
```gradle
dependencies {
implementation 'org.bitcoindevkit.bdkjni:bdk-android-debug:0.2.1-dev'
implementation 'org.bitcoindevkit.bdkjni:bdk-android-debug:0.3.0'
...
}
```
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ afterEvaluate {
// You can then customize attributes of the publication as shown below.
groupId = 'org.bitcoindevkit.bdkjni'
artifactId = 'bdk-android'
version = '0.2.1-dev'
version = '0.3.0'
}

debug(MavenPublication) {
Expand All @@ -61,7 +61,7 @@ afterEvaluate {

groupId = 'org.bitcoindevkit.bdkjni'
artifactId = 'bdk-android-debug'
version = '0.2.1-dev'
version = '0.3.0'
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion jvm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ afterEvaluate {
maven(MavenPublication) {
groupId = 'org.bitcoindevkit.bdkjni'
artifactId = 'bdk-jvm'
version = '0.2.1-dev'
version = '0.3.0'

from components.java
}
Expand Down
2 changes: 1 addition & 1 deletion native-libs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bdk-jni"
version = "0.2.1-dev"
version = "0.3.0"
authors = ["Alekos Filini <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 99e8f2b

Please sign in to comment.