From 0408795be95c00d75e96eaef6eae8a9c734014f5 Mon Sep 17 00:00:00 2001 From: andri lim Date: Tue, 15 Oct 2024 16:59:34 +0700 Subject: [PATCH] v0.4.4 (#227) * v0.4.4 * Replace apt-fast with apt-get --- .github/workflows/ci.yml | 4 ++-- json_rpc.nimble | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c9b9a9..ede45be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,8 +68,8 @@ jobs: if: runner.os == 'Linux' && matrix.target.cpu == 'i386' run: | sudo dpkg --add-architecture i386 - sudo apt-fast update -qq - sudo DEBIAN_FRONTEND='noninteractive' apt-fast install \ + sudo apt-get update -qq + sudo DEBIAN_FRONTEND='noninteractive' apt-get install \ --no-install-recommends -yq gcc-multilib g++-multilib \ libssl-dev:i386 mkdir -p external/bin diff --git a/json_rpc.nimble b/json_rpc.nimble index 110c3b7..2f9ffc5 100644 --- a/json_rpc.nimble +++ b/json_rpc.nimble @@ -10,7 +10,7 @@ mode = ScriptMode.Verbose packageName = "json_rpc" -version = "0.4.2" +version = "0.4.4" author = "Status Research & Development GmbH" description = "Ethereum remote procedure calls" license = "Apache License 2.0"