From f59285408c009dafe2855495024b7dc2469216eb Mon Sep 17 00:00:00 2001 From: ChihChengLiang Date: Mon, 9 May 2022 22:22:22 +0200 Subject: [PATCH 1/3] use stable rust --- .github/workflows/pythonpackage.yml | 3 +-- rust-toolchain | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 rust-toolchain diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 063c125..417a082 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -15,11 +15,10 @@ jobs: - name: Checkout uses: actions/checkout@v1 - - name: Install latest nightly + - name: Install Rust uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly default: true components: rustfmt, clippy - name: Lint with rustfmt diff --git a/rust-toolchain b/rust-toolchain new file mode 100644 index 0000000..4d5fde5 --- /dev/null +++ b/rust-toolchain @@ -0,0 +1 @@ +1.60.0 From 4af625c5a4eea6f1089f87e76f7180559b0f085b Mon Sep 17 00:00:00 2001 From: ChihChengLiang Date: Fri, 13 May 2022 08:44:12 +0200 Subject: [PATCH 2/3] support arm --- .github/workflows/pythonpackage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 417a082..2a136b1 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -141,7 +141,7 @@ jobs: needs: build strategy: matrix: - target: [x86_64, i686] + target: [x86_64, i686, aarch64] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 From 52943c9028c037f1f592a73c5ee103da597833f2 Mon Sep 17 00:00:00 2001 From: ChihChengLiang Date: Fri, 13 May 2022 09:43:02 +0200 Subject: [PATCH 3/3] bump 1.8.1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6e6700b..1a9b55f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "milagro-bls-binding" -version = "1.8.0" +version = "1.8.1" edition = "2018" authors = ["chihchengliang@gmail.com"] readme = "README.md"