Skip to content

Commit ec95b4f

Browse files
authored
Merge pull request #127 from LFDT-web3j/bump_5.0.3
Bump 5.0.3
2 parents e22e43d + aee0b6a commit ec95b4f

File tree

4 files changed

+33
-7
lines changed

4 files changed

+33
-7
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,18 @@ jobs:
7070
java-version: 21
7171
- name: Publish Javadocs (gh-pages)
7272
env:
73-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
74-
run: ./gradlew core:gitPublishPush
73+
GITHUB_TOKEN: ${{ secrets.JRELEASER_GITHUB_TOKEN }}
74+
run: ./gradlew core:gitPublishPush
75+
76+
git-release:
77+
needs: release
78+
runs-on: ubuntu-latest
79+
steps:
80+
- name: Github Release
81+
uses: marvinpinto/action-automatic-releases@latest
82+
with:
83+
repo_token: ${{ secrets.JRELEASER_GITHUB_TOKEN }}
84+
automatic_release_tag: 'v${{ steps.release_name.outputs.version }}'
85+
prerelease: false
86+
files: |
87+
"web3j-evm-"+${{ steps.release_name.outputs.version }}.*

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,21 @@
22

33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
# [5.0.3]() (Upcoming)
56

6-
# [5.0.2]() (Upcoming)
7+
### Bug Fixes
8+
9+
*
10+
11+
### Features
12+
13+
*
14+
15+
### BREAKING CHANGES
16+
17+
*
18+
19+
# [5.0.2](https://github.com/LFDT-web3j/web3j-evm/releases/tag/v5.0.2) (2026-02-05)
720

821
### Bug Fixes
922

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ repositories {
2727
}
2828
2929
dependencies {
30-
implementation "org.web3j:core:5.0.1"
31-
implementation "org.web3j:web3j-evm:5.0.1"
30+
implementation "org.web3j:core:5.0.2"
31+
implementation "org.web3j:web3j-evm:5.0.2"
3232
}
3333
```
3434

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
kotlin.code.style=official
22
group=org.web3j
3-
version=5.0.2-SNAPSHOT
3+
version=5.0.3-SNAPSHOT
44
org.gradle.caching=true
5-
org.gradle.configuration-cache=true
5+
org.gradle.configuration-cache=false
66
org.gradle.configuration-cache.problems=warn

0 commit comments

Comments
 (0)