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

Commit 99e8f2b

Browse files
committed
Bump version to 0.3.0
1 parent da601a3 commit 99e8f2b

6 files changed

Lines changed: 10 additions & 7 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
target
22
**/*.rs.bk
33
Cargo.lock
4-
4+
**/*.so
55
.idea
66
.gradle
77
local.properties

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

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

45-
[unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.2.0...HEAD
47+
[unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.3.0...HEAD
48+
[v0.2.0]: https://github.com/bitcoindevkit/bdk-jni/compare/v0.2.0...v0.3.0
4649
[v0.2.0]: https://github.com/bitcoindevkit/bdk-jni/compare/d08725cc...v0.2.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ and used locally in the IDE. Because you added your local Maven repository to yo
8787
file, you can now simply add `bdk-android` or `bdk-android-debug` to your `app/build.gradle` dependencies:
8888
```gradle
8989
dependencies {
90-
implementation 'org.bitcoindevkit.bdkjni:bdk-android-debug:0.2.1-dev'
90+
implementation 'org.bitcoindevkit.bdkjni:bdk-android-debug:0.3.0'
9191
...
9292
}
9393
```

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ afterEvaluate {
5252
// You can then customize attributes of the publication as shown below.
5353
groupId = 'org.bitcoindevkit.bdkjni'
5454
artifactId = 'bdk-android'
55-
version = '0.2.1-dev'
55+
version = '0.3.0'
5656
}
5757

5858
debug(MavenPublication) {
@@ -61,7 +61,7 @@ afterEvaluate {
6161

6262
groupId = 'org.bitcoindevkit.bdkjni'
6363
artifactId = 'bdk-android-debug'
64-
version = '0.2.1-dev'
64+
version = '0.3.0'
6565
}
6666
}
6767
}

jvm/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ afterEvaluate {
3232
maven(MavenPublication) {
3333
groupId = 'org.bitcoindevkit.bdkjni'
3434
artifactId = 'bdk-jvm'
35-
version = '0.2.1-dev'
35+
version = '0.3.0'
3636

3737
from components.java
3838
}

native-libs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk-jni"
3-
version = "0.2.1-dev"
3+
version = "0.3.0"
44
authors = ["Alekos Filini <alekos.filini@gmail.com>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)