Skip to content

Commit 2706fb3

Browse files
authored
*: bump 0.4.3 (#21)
Signed-off-by: Jay Lee <[email protected]>
1 parent 52de425 commit 2706fb3

File tree

7 files changed

+20
-3
lines changed

7 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.4.3 - 2022-02-21
2+
3+
- Added riscv64 support (#14)
4+
5+
# 0.4.2 - 2021-08-09
6+
7+
- Fixed prof not working under certain condition (#9) (#12)
8+
- Updated paste to 1 (#11)
9+
110
# 0.4.1 - 2020-11-16
211

312
- Updated jemalloc to fix deadlock during initialization

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tikv-jemallocator"
33
# Make sure to update the version in the README as well:
4-
version = "0.4.1"
4+
version = "0.4.3"
55
authors = [
66
"Alex Crichton <[email protected]>",
77
"Gonzalo Brito Gadeschi <[email protected]>",

jemalloc-ctl/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@
6464
//! }
6565
//! }
6666
//! ```
67+
// TODO: rename the following lint on next minor bump
68+
#![allow(renamed_and_removed_lints)]
6769
#![deny(missing_docs, broken_intra_doc_links)]
6870
#![cfg_attr(not(feature = "use_std"), no_std)]
6971
#![cfg_attr(feature = "cargo-clippy", allow(clippy::module_name_repetitions))]

jemalloc-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tikv-jemalloc-sys"
3-
version = "0.4.2+5.2.1-patched.2"
3+
version = "0.4.3+5.2.1-patched.2"
44
authors = [
55
"Alex Crichton <[email protected]>",
66
"Gonzalo Brito Gadeschi <[email protected]>",

jemalloc-sys/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@
4545
feature = "cargo-clippy",
4646
allow(clippy::cast_possible_truncation, clippy::cast_possible_wrap)
4747
)]
48+
// TODO: rename the following lint on next minor bump
49+
#![allow(renamed_and_removed_lints)]
4850
#![deny(missing_docs, broken_intra_doc_links)]
4951

5052
use libc::{c_char, c_int, c_uint, c_void, size_t};

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
//! and is suitable both as a memory allocator and as a global allocator.
1717
1818
#![cfg_attr(feature = "alloc_trait", feature(allocator_api))]
19+
// TODO: rename the following lint on next minor bump
20+
#![allow(renamed_and_removed_lints)]
1921
#![deny(missing_docs, broken_intra_doc_links)]
2022
#![no_std]
2123

systest/src/main.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#![allow(bad_style, improper_ctypes, dead_code, unused_imports)]
1+
// TODO: remove systest
2+
#![allow(bad_style, improper_ctypes, dead_code, unused_imports, deref_nullptr)]
3+
#![allow(clippy::all)]
24

35
use std::alloc::System;
46

0 commit comments

Comments
 (0)