Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ about: "Create a new release [for release managers only]"
title: "Release MAJOR.MINOR.PATCH"
---

- [ ] Bump the bdk-ffi submodule to the release tag in bdk-ffi and merge that to `master`.
- [ ] Bump the bdk-ffi submodule to the release tag in bdk-ffi.
- [ ] Delete the `target` directory in bdk-ffi and the `build` directory in `lib` to make sure you're building the library from scratch without any caches.
- [ ] Build the library.
- [ ] Run the tests and adjust them if necessary.
Expand Down Expand Up @@ -34,6 +34,7 @@ git push upstream v2.3.0
```

- [ ] Build release artifacts through the workflow dispatch with the new tag (`build.yml`)
- [ ] Add the platform-specific binaries to the `resources/` directory
- [ ] Publish the release to Maven Central.
- [ ] Bump the version on `master` while keeping the `SNAPSHOT` suffix, e.g., from `1.1.0-SNAPSHOT` to `1.2.0-SNAPSHOT`.
- [ ] Update this release workflow if necessary.
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ build/
.gradle/
bdk.kt
libbdkffi.dylib
libbdkffi.so
bdkffi.dll
/.idea
.DS_Store
/examples/data/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ You can also list the application tasks. (All examples grouped under application
## Publish to your local Maven repo

```shell
./gradlew publishToMavenLocal
./gradlew publishToMavenLocal -P skipSigning
```

## Known issues
Expand Down
Loading