From f709bd9e16b1b6870fe3e4401196479e014a2ef6 Mon Sep 17 00:00:00 2001 From: andri lim Date: Tue, 15 Oct 2024 16:44:46 +0700 Subject: [PATCH] v0.2.4 (#75) * v0.2.4 * Replace apt-fast with apt-get --- .github/workflows/ci.yml | 4 ++-- serialization.nimble | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f02555..088c555 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/serialization.nimble b/serialization.nimble index 64a1ecb..59d6b68 100644 --- a/serialization.nimble +++ b/serialization.nimble @@ -1,7 +1,7 @@ mode = ScriptMode.Verbose packageName = "serialization" -version = "0.2.2" +version = "0.2.4" author = "Status Research & Development GmbH" description = "A modern and extensible serialization framework for Nim" license = "Apache License 2.0"