From 62d33aeba54628e0e9ac6609c204a196437e4d15 Mon Sep 17 00:00:00 2001 From: Linwei Shang Date: Fri, 10 Feb 2023 11:25:44 -0500 Subject: [PATCH] chore: release v0.3.3 (#158) * release build on ubuntu-20.04 * bump ver and changelog * use ubuntu-latest for arm build * Add Cross.toml * Only install for the host machine --------- Co-authored-by: Adam Spofford --- .github/workflows/release.yml | 2 +- CHANGELOG.md | 4 +++- Cargo.lock | 2 +- Cargo.toml | 2 +- Cross.toml | 4 ++++ 5 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 Cross.toml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f36178fd..554d5aad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: include: - - os: ubuntu-latest + - os: ubuntu-20.04 name: linux target_file: target/x86_64-unknown-linux-musl/release/quill asset_name: quill-linux-x86_64 diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e5c146d..9467dfbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.3.3] - 2023-02-09 + ### Changed -- remove the `EC PARAMETERS` section in the PEM file to match dfx +- Remove the `EC PARAMETERS` section in the PEM file to match dfx. (#152) ### Added diff --git a/Cargo.lock b/Cargo.lock index 442b1b7a..f59cff32 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3660,7 +3660,7 @@ dependencies = [ [[package]] name = "quill" -version = "0.3.2" +version = "0.3.3" dependencies = [ "anyhow", "base64 0.13.0", diff --git a/Cargo.toml b/Cargo.toml index e8e357d3..1b22d84f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quill" -version = "0.3.2" +version = "0.3.3" authors = ["DFINITY Team"] edition = "2021" diff --git a/Cross.toml b/Cross.toml new file mode 100644 index 00000000..4f1cfd4d --- /dev/null +++ b/Cross.toml @@ -0,0 +1,4 @@ +[build] +pre-build = [ + "apt-get update && apt-get install --assume-yes libssl-dev" +]