* v0.2.4

* Replace apt-fast with apt-get
This commit is contained in:
andri lim 2024-10-15 16:44:46 +07:00 committed by GitHub
parent 7950ac1e8c
commit f709bd9e16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -68,8 +68,8 @@ jobs:
if: runner.os == 'Linux' && matrix.target.cpu == 'i386' if: runner.os == 'Linux' && matrix.target.cpu == 'i386'
run: | run: |
sudo dpkg --add-architecture i386 sudo dpkg --add-architecture i386
sudo apt-fast update -qq sudo apt-get update -qq
sudo DEBIAN_FRONTEND='noninteractive' apt-fast install \ sudo DEBIAN_FRONTEND='noninteractive' apt-get install \
--no-install-recommends -yq gcc-multilib g++-multilib \ --no-install-recommends -yq gcc-multilib g++-multilib \
libssl-dev:i386 libssl-dev:i386
mkdir -p external/bin mkdir -p external/bin

View File

@ -1,7 +1,7 @@
mode = ScriptMode.Verbose mode = ScriptMode.Verbose
packageName = "serialization" packageName = "serialization"
version = "0.2.2" version = "0.2.4"
author = "Status Research & Development GmbH" author = "Status Research & Development GmbH"
description = "A modern and extensible serialization framework for Nim" description = "A modern and extensible serialization framework for Nim"
license = "Apache License 2.0" license = "Apache License 2.0"