Skip to content

Commit

Permalink
chore: release 2.0.2 (#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
fjchen7 authored Jun 24, 2022
1 parent d5c6c2b commit 014f1ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Continuous delivery in GitHub and Maven Central Repository
on:
push:
tags:
- 'v*'
- 'rc/v*'

jobs:
create_release_draft:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
- name: Commit and create Pull Request
uses: peter-evans/create-pull-request@v3
with:
commit-message: 'chore: update CHANGELOG.md for release ${{ github.event.release.tag_name }}'
branch: chore/update-CHANGELOG-for-release-${{ github.event.release.tag_name }}
base: master
commit-message: 'chore: release ${{ github.event.release.tag_name }}'
branch: chore/release-${{ github.event.release.tag_name }}
base: develop
author: github-actions <[email protected]>
title: 'Update CHANGELOG for release ${{ github.event.release.tag_name }}'
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ allprojects {
targetCompatibility = 1.8

group 'org.nervos.ckb'
version '2.0.1'
version '2.0.2'
apply plugin: 'java'

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

0 comments on commit 014f1ff

Please sign in to comment.