Skip to content

Commit

Permalink
release 0.4.1 (#68)
Browse files Browse the repository at this point in the history
Signed-off-by: Nischal Sharma <[email protected]>
  • Loading branch information
NickSneo authored May 2, 2024
1 parent 0d43250 commit ded7be2
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @conor10 @iikirilov
* @conor10 @gtebrean @NickSneo
5 changes: 5 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@
### Why is it needed?
*required*

## Checklist

- [ ] I've read the contribution guidelines.
- [ ] I've added tests (if applicable).
- [ ] I've added a changelog entry if necessary.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]
workflow_dispatch:

jobs:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
/.idea
/.gradle
/out
/lib
*.iml
gradle.properties
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.4.1](https://github.com/web3j/solidity-gradle-plugin/releases/tag/v0.4.1) (2024-05-02)

### Bug Fixes

* Gradle 8 compatibility [#67](https://github.com/hyperledger/web3j-solidity-gradle-plugin/pull/67)

### Features

* Repo Migration required files [#66](https://github.com/hyperledger/web3j-solidity-gradle-plugin/pull/66)
* Release version 0.4.1 and updated web3j-sokt to 0.3.0 [#68](https://github.com/web3j/solidity-gradle-plugin/pull/68)

### BREAKING CHANGES

* NIL

# [0.4.0](https://github.com/web3j/solidity-gradle-plugin/releases/tag/v0.4.0) (2023-06-16)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Solidity Gradle Plugin
Web3j Solidity Gradle Plugin
======================

Simple Gradle plugin used by the [Web3j plugin](https://github.com/web3j/web3j-gradle-plugin)
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apply {
'spotless'
].each { buildScript ->
download {
src "https://raw.githubusercontent.com/web3j/build-tools/master/gradle/$buildScript/build.gradle"
src "https://raw.githubusercontent.com/hyperledger/web3j-build-tools/main/gradle/$buildScript/build.gradle"
dest "$rootDir/gradle/$buildScript/build.gradle"
overwrite false
quiet true
Expand All @@ -40,7 +40,7 @@ gradlePlugin {

pluginBundle {
website = 'https://web3j.io/'
vcsUrl = 'https://github.com/web3j/solidity-gradle-plugin'
vcsUrl = 'https://github.com/hyperledger/web3j-solidity-gradle-plugin'
description = 'Gradle plugin providing tasks to compile Solidity contracts.'
tags = ['solidity', 'ethereum']
plugins {
Expand All @@ -57,7 +57,7 @@ repositories {
}

ext {
soktVersion = '0.2.4'
soktVersion = '0.3.0'
junitVersion = '4.13'
assertjVersion = '3.17.1'
systemRulesVersion = '1.19.0'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group=org.web3j.solidity
version=0.4.1-SNAPSHOT
version=0.4.1
4 changes: 2 additions & 2 deletions gradle/spotless/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ apply plugin: 'com.diffplug.gradle.spotless'
apply plugin: "de.undercouch.download"

task downloadJavaLicense(type: Download) {
src 'https://raw.githubusercontent.com/web3j/build-tools/master/gradle/spotless/java.license'
src 'https://raw.githubusercontent.com/hyperledger/web3j-build-tools/main/gradle/spotless/java.license'
dest new File("$rootDir/gradle/spotless",'java.license')
quiet true
onlyIfModified true
}

task downloadFormatterProperties(type: Download) {
src 'https://raw.githubusercontent.com/web3j/build-tools/master/gradle/spotless/formatter.properties'
src 'https://raw.githubusercontent.com/hyperledger/web3j-build-tools/main/gradle/spotless/formatter.properties'
dest new File("$rootDir/gradle/spotless",'formatter.properties')
quiet true
onlyIfModified true
Expand Down

0 comments on commit ded7be2

Please sign in to comment.