diff --git a/CHANGELOG.md b/CHANGELOG.md index a090768..d2ac9a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.4.3 - 2022-02-21 + +- Added riscv64 support (#14) + +# 0.4.2 - 2021-08-09 + +- Fixed prof not working under certain condition (#9) (#12) +- Updated paste to 1 (#11) + # 0.4.1 - 2020-11-16 - Updated jemalloc to fix deadlock during initialization diff --git a/Cargo.toml b/Cargo.toml index a702593..84767a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tikv-jemallocator" # Make sure to update the version in the README as well: -version = "0.4.1" +version = "0.4.3" authors = [ "Alex Crichton ", "Gonzalo Brito Gadeschi ", diff --git a/jemalloc-ctl/src/lib.rs b/jemalloc-ctl/src/lib.rs index af330a9..6911f07 100644 --- a/jemalloc-ctl/src/lib.rs +++ b/jemalloc-ctl/src/lib.rs @@ -64,6 +64,8 @@ //! } //! } //! ``` +// TODO: rename the following lint on next minor bump +#![allow(renamed_and_removed_lints)] #![deny(missing_docs, broken_intra_doc_links)] #![cfg_attr(not(feature = "use_std"), no_std)] #![cfg_attr(feature = "cargo-clippy", allow(clippy::module_name_repetitions))] diff --git a/jemalloc-sys/Cargo.toml b/jemalloc-sys/Cargo.toml index 2c9d1cc..a07b19c 100644 --- a/jemalloc-sys/Cargo.toml +++ b/jemalloc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tikv-jemalloc-sys" -version = "0.4.2+5.2.1-patched.2" +version = "0.4.3+5.2.1-patched.2" authors = [ "Alex Crichton ", "Gonzalo Brito Gadeschi ", diff --git a/jemalloc-sys/src/lib.rs b/jemalloc-sys/src/lib.rs index 9dc79c9..3751802 100644 --- a/jemalloc-sys/src/lib.rs +++ b/jemalloc-sys/src/lib.rs @@ -45,6 +45,8 @@ feature = "cargo-clippy", allow(clippy::cast_possible_truncation, clippy::cast_possible_wrap) )] +// TODO: rename the following lint on next minor bump +#![allow(renamed_and_removed_lints)] #![deny(missing_docs, broken_intra_doc_links)] use libc::{c_char, c_int, c_uint, c_void, size_t}; diff --git a/src/lib.rs b/src/lib.rs index bea6caf..4a93973 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,6 +16,8 @@ //! and is suitable both as a memory allocator and as a global allocator. #![cfg_attr(feature = "alloc_trait", feature(allocator_api))] +// TODO: rename the following lint on next minor bump +#![allow(renamed_and_removed_lints)] #![deny(missing_docs, broken_intra_doc_links)] #![no_std] diff --git a/systest/src/main.rs b/systest/src/main.rs index ac50b6a..2f35191 100644 --- a/systest/src/main.rs +++ b/systest/src/main.rs @@ -1,4 +1,6 @@ -#![allow(bad_style, improper_ctypes, dead_code, unused_imports)] +// TODO: remove systest +#![allow(bad_style, improper_ctypes, dead_code, unused_imports, deref_nullptr)] +#![allow(clippy::all)] use std::alloc::System;