Skip to content

Commit

Permalink
*: bump 0.4.3 (#21)
Browse files Browse the repository at this point in the history
Signed-off-by: Jay Lee <BusyJayLee@gmail.com>
  • Loading branch information
BusyJay committed Feb 21, 2022
1 parent 52de425 commit 2706fb3
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <alex@alexcrichton.com>",
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
Expand Down
2 changes: 2 additions & 0 deletions jemalloc-ctl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))]
Expand Down
2 changes: 1 addition & 1 deletion jemalloc-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <alex@alexcrichton.com>",
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
Expand Down
2 changes: 2 additions & 0 deletions jemalloc-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
4 changes: 3 additions & 1 deletion systest/src/main.rs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down

0 comments on commit 2706fb3

Please sign in to comment.