*: bump 0.4.3 (#21)

Signed-off-by: Jay Lee <BusyJayLee@gmail.com>
This commit is contained in:
Jay 2022-02-21 17:50:45 +08:00 committed by GitHub
parent 52de4257fa
commit 2706fb3874
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 20 additions and 3 deletions

View File

@ -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 # 0.4.1 - 2020-11-16
- Updated jemalloc to fix deadlock during initialization - Updated jemalloc to fix deadlock during initialization

View File

@ -1,7 +1,7 @@
[package] [package]
name = "tikv-jemallocator" name = "tikv-jemallocator"
# Make sure to update the version in the README as well: # Make sure to update the version in the README as well:
version = "0.4.1" version = "0.4.3"
authors = [ authors = [
"Alex Crichton <alex@alexcrichton.com>", "Alex Crichton <alex@alexcrichton.com>",
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>", "Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",

View File

@ -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)] #![deny(missing_docs, broken_intra_doc_links)]
#![cfg_attr(not(feature = "use_std"), no_std)] #![cfg_attr(not(feature = "use_std"), no_std)]
#![cfg_attr(feature = "cargo-clippy", allow(clippy::module_name_repetitions))] #![cfg_attr(feature = "cargo-clippy", allow(clippy::module_name_repetitions))]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tikv-jemalloc-sys" name = "tikv-jemalloc-sys"
version = "0.4.2+5.2.1-patched.2" version = "0.4.3+5.2.1-patched.2"
authors = [ authors = [
"Alex Crichton <alex@alexcrichton.com>", "Alex Crichton <alex@alexcrichton.com>",
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>", "Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",

View File

@ -45,6 +45,8 @@
feature = "cargo-clippy", feature = "cargo-clippy",
allow(clippy::cast_possible_truncation, clippy::cast_possible_wrap) 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)] #![deny(missing_docs, broken_intra_doc_links)]
use libc::{c_char, c_int, c_uint, c_void, size_t}; use libc::{c_char, c_int, c_uint, c_void, size_t};

View File

@ -16,6 +16,8 @@
//! and is suitable both as a memory allocator and as a global allocator. //! and is suitable both as a memory allocator and as a global allocator.
#![cfg_attr(feature = "alloc_trait", feature(allocator_api))] #![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)] #![deny(missing_docs, broken_intra_doc_links)]
#![no_std] #![no_std]

View File

@ -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; use std::alloc::System;