From dd082c2a72181974702082419d5e8cf5869089d2 Mon Sep 17 00:00:00 2001 From: Igor Artamonov Date: Thu, 21 Nov 2024 22:52:15 +0000 Subject: [PATCH] solution: release v0.12.1 --- README.md | 2 +- build.gradle | 2 +- examples/build.gradle | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a3eaacd..8d1f17a 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Framework agnostic modular Java 17+ integration library for [Ethereum blockchains](https://www.ethereum.org) -- Latest Stable Version: 0.12.0 +- Latest Stable Version: 0.12.1 - Latest Snapshot Version: 0.13.0-SNAPSHOT ## Modules diff --git a/build.gradle b/build.gradle index b1ab539..92c2f65 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'jacoco' allprojects { group = 'io.emeraldpay.etherjar' - version = "0.12.0" + version = "0.12.1" repositories { mavenLocal() diff --git a/examples/build.gradle b/examples/build.gradle index f8291c0..dcd1a96 100644 --- a/examples/build.gradle +++ b/examples/build.gradle @@ -8,9 +8,9 @@ repositories { dependencies { - compile "io.emeraldpay.etherjar:etherjar-domain:0.12.0" - compile "io.emeraldpay.etherjar:etherjar-rpc-api:0.12.0" - compile "io.emeraldpay.etherjar:etherjar-rpc-http:0.12.0" - compile "io.emeraldpay.etherjar:etherjar-rlp:0.12.0" + compile "io.emeraldpay.etherjar:etherjar-domain:0.12.1" + compile "io.emeraldpay.etherjar:etherjar-rpc-api:0.12.1" + compile "io.emeraldpay.etherjar:etherjar-rpc-http:0.12.1" + compile "io.emeraldpay.etherjar:etherjar-rlp:0.12.1" }