Skip to content

Commit

Permalink
chore: release v 0.101.1 (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
fjchen7 authored Dec 1, 2021
1 parent e9daff6 commit 005e436
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Build and upload artifact to Nexus
run: |
./gradlew shadowJar
./gradlew uploadArchives -PossrhUsername=${{ secrets.NEXUS_OSSRH_USERNAME }} -PossrhPassword=${{ secrets.NEXUS_OSSRH_PASSWORD }} -Psigning.keyId=${{ secrets.NEXUS_SIGNING_KEYID }} -Psigning.password=${{ secrets.NEXUS_SIGNING_PASSWORD } -Psigning.secretKeyRingFile=./secret_key.gpg
./gradlew uploadArchives -PossrhUsername=${{ secrets.NEXUS_OSSRH_USERNAME }} -PossrhPassword=${{ secrets.NEXUS_OSSRH_PASSWORD }} -Psigning.keyId=${{ secrets.NEXUS_SIGNING_KEYID }} -Psigning.password=${{ secrets.NEXUS_SIGNING_PASSWORD }} -Psigning.secretKeyRingFile=./secret_key.gpg
# - name: upload artifact ckb.jar to GitHub release page
# uses: actions/upload-release-asset@v1
# env:
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [v0.101.1](https://github.com/nervosnetwork/ckb-sdk-java/compare/v0.101.1...v0.101.0-beta.1) (2021-12-01)
### Feature

- Support `build_sudt_issue_transaction` ([#501](https://github.com/nervosnetwork/ckb-sdk-java/pull/501))
- Add enum Freeze for extra ([#508](https://github.com/nervosnetwork/ckb-sdk-java/pull/508))
- Adopt full address by default ([#501](https://github.com/nervosnetwork/ckb-sdk-java/pull/501), [#511](https://github.com/nervosnetwork/ckb-sdk-java/pull/511))

### Chore

- Label PR based on title ([#508](https://github.com/nervosnetwork/ckb-sdk-java/pull/508))

# [v0.101.0-beta.2](https://github.com/nervosnetwork/ckb-sdk-java/compare/v0.101.0-beta.1...v0.101.0-beta.2) (2021-11-17)

### Feature
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ allprojects {
targetCompatibility = 1.8

group 'org.nervos.ckb'
version '0.101.0-beta.2'
version '0.101.1'
apply plugin: 'java'

repositories {
Expand Down Expand Up @@ -112,7 +112,7 @@ configure(subprojects.findAll { it.name != 'tests' }) {
publications {
mavenJava(MavenPublication) {
groupId 'org.nervos.ckb'
version '0.101.0-beta.2'
version '0.101.1'
from components.java
}
}
Expand Down

0 comments on commit 005e436

Please sign in to comment.