From 7543b3e16ba88e4b3eea876654e012e3fbff116f Mon Sep 17 00:00:00 2001 From: meghfossa <86321858+meghfossa@users.noreply.github.com> Date: Mon, 18 Dec 2023 11:25:03 -0700 Subject: [PATCH] remove jemalloc (#2) --- .github/workflows/release.yml | 2 +- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9945283..c790b68 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -84,7 +84,7 @@ jobs: if: ${{ matrix.os-name == 'linux' }} run: | mkdir release - cross build --features jemalloc --target=x86_64-unknown-linux-musl --release + cross build --target=x86_64-unknown-linux-musl --release mv target/x86_64-unknown-linux-musl/release/reachability-toolkit release/reachability-toolkit-$RELEASE_VERSION-x86_64-linux chmod +x release/* gh release upload ${{ github.ref_name }} $(find release -mindepth 1 | xargs) --clobber diff --git a/CHANGELOG.md b/CHANGELOG.md index ef82e1a..ad1581d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.0.2 + +Features: +- Removes `jemalloc` from release process. + ## v0.0.1 Features: diff --git a/Cargo.lock b/Cargo.lock index 749f418..940af7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -375,7 +375,7 @@ dependencies = [ [[package]] name = "reachability-toolkit" -version = "0.0.1" +version = "0.0.2" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index b71d5d1..26d4ca9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reachability-toolkit" -version = "0.0.1" +version = "0.0.2" edition = "2021" authors = ["github.com/fossas"] publish = false