From a66e840dbe18770ba6363b0a26dc14c2079acbb9 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 10 Dec 2024 12:18:52 +0100 Subject: [PATCH 1/4] Update eth version --- eth_versioned.nimble | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth_versioned.nimble b/eth_versioned.nimble index 5a904f4..d068d5b 100644 --- a/eth_versioned.nimble +++ b/eth_versioned.nimble @@ -7,4 +7,4 @@ description = "Ethereum Common library" license = "MIT" requires "nim >= 1.6.0" -requires "eth#c482b4c5b658a77cc96b49d4a397aa6d98472ac7" +requires "eth >= 0.5.0" From 50193bf36265060c9128459dc06260f63387c600 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Wed, 11 Dec 2024 15:35:47 +0100 Subject: [PATCH 2/4] Update version and remove support for 1.6 because nim-eth removed it --- .github/workflows/ci.yml | 2 +- eth_versioned.nimble | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d357986..cd7e1a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: timeout-minutes: 30 strategy: matrix: - nim: [1.6.20, stable] + nim: [2.0.12, stable] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/eth_versioned.nimble b/eth_versioned.nimble index d068d5b..c2bc0c3 100644 --- a/eth_versioned.nimble +++ b/eth_versioned.nimble @@ -1,7 +1,7 @@ # corresponds to what the dependent package version SHOULD BE, following the # [semver spec](http://semver.org/) [with initial release at # 1.0.0](https://docs.npmjs.com/about-semantic-versioning#incrementing-semantic-versions-in-published-packages). -version = "1.0.0" +version = "1.1.0" author = "Status Research & Development GmbH" description = "Ethereum Common library" license = "MIT" From 8ba00bcca408b638551f5ac0cda449a1f566275b Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 7 Jan 2025 10:59:44 +0100 Subject: [PATCH 3/4] Update to Nim 2.0.14 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd7e1a4..f2ccf33 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: timeout-minutes: 30 strategy: matrix: - nim: [2.0.12, stable] + nim: [2.0.14, stable] steps: - name: Checkout uses: actions/checkout@v4 From 98c65e74ff5a5e9647a5043b5784e5c8dc4f9fbc Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 7 Jan 2025 14:46:46 +0100 Subject: [PATCH 4/4] Update Nim minimum version to 2.0.14 --- eth_versioned.nimble | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth_versioned.nimble b/eth_versioned.nimble index c2bc0c3..5d8c4f4 100644 --- a/eth_versioned.nimble +++ b/eth_versioned.nimble @@ -6,5 +6,5 @@ author = "Status Research & Development GmbH" description = "Ethereum Common library" license = "MIT" -requires "nim >= 1.6.0" +requires "nim >= 2.0.14" requires "eth >= 0.5.0"