From 7fef687624060ae504d3242adb096567a63398df Mon Sep 17 00:00:00 2001 From: gnzlbg Date: Fri, 14 Jun 2019 12:13:01 +0200 Subject: [PATCH] Bump patch versions again --- Cargo.toml | 4 ++-- jemalloc-ctl/Cargo.toml | 8 ++++---- jemalloc-sys/Cargo.toml | 4 ++-- jemallocator-global/Cargo.toml | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ca85464..6fc95a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "jemallocator" # Make sure to update the version in the README as well: -version = "0.3.1" +version = "0.3.2" authors = [ "Alex Crichton ", "Gonzalo Brito Gadeschi ", @@ -36,7 +36,7 @@ bench = false members = ["systest", "jemallocator-global", "jemalloc-ctl", "jemalloc-sys" ] [dependencies] -jemalloc-sys = { path = "jemalloc-sys", version = "0.3.1", default-features = false } +jemalloc-sys = { path = "jemalloc-sys", version = "0.3.2", default-features = false } libc = { version = "^0.2.8", default-features = false } [dev-dependencies] diff --git a/jemalloc-ctl/Cargo.toml b/jemalloc-ctl/Cargo.toml index 195d278..7b3226e 100644 --- a/jemalloc-ctl/Cargo.toml +++ b/jemalloc-ctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jemalloc-ctl" -version = "0.3.1" +version = "0.3.2" authors = [ "Steven Fackler ", "Gonzalo Brito Gadeschi " @@ -25,16 +25,16 @@ is-it-maintained-open-issues = { repository = "gnzlbg/jemallocator" } maintenance = { status = "actively-developed" } [dependencies] -jemalloc-sys = { path = "../jemalloc-sys", version = "0.3.1" } +jemalloc-sys = { path = "../jemalloc-sys", version = "0.3.2" } libc = { version = "0.2", default-features = false } paste = { version = "0.1" } [dev-dependencies] -jemallocator = { path = "..", version = "0.3.1" } +jemallocator = { path = "..", version = "0.3.2" } [features] default = [] use_std = [ "libc/use_std" ] [package.metadata.docs.rs] -rustdoc-args = [ "--cfg jemallocator_docs" ] \ No newline at end of file +rustdoc-args = [ "--cfg", "jemallocator_docs" ] \ No newline at end of file diff --git a/jemalloc-sys/Cargo.toml b/jemalloc-sys/Cargo.toml index 182ece3..2367804 100644 --- a/jemalloc-sys/Cargo.toml +++ b/jemalloc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jemalloc-sys" -version = "0.3.1" +version = "0.3.2" authors = [ "Alex Crichton ", "Gonzalo Brito Gadeschi ", @@ -48,4 +48,4 @@ unprefixed_malloc_on_supported_platforms = [] disable_initial_exec_tls = [] [package.metadata.docs.rs] -rustdoc-args = [ "--cfg jemallocator_docs" ] +rustdoc-args = [ "--cfg", "jemallocator_docs" ] diff --git a/jemallocator-global/Cargo.toml b/jemallocator-global/Cargo.toml index 3db14bf..8522d25 100644 --- a/jemallocator-global/Cargo.toml +++ b/jemallocator-global/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "jemallocator-global" # Make sure to update the version in the readme as well: -version = "0.3.1" +version = "0.3.2" authors = ["Gonzalo Brito Gadeschi "] edition = "2015" license = "MIT/Apache-2.0" @@ -24,7 +24,7 @@ is-it-maintained-open-issues = { repository = "gnzlbg/jemallocator" } maintenance = { status = "actively-developed" } [dependencies] -jemallocator = { version = "0.3.1", path = "..", optional = true } +jemallocator = { version = "0.3.2", path = "..", optional = true } cfg-if = "0.1" [features] @@ -36,7 +36,7 @@ force_global_jemalloc = [ "jemallocator" ] # for a particular target, white-list the target explicitly here: [target.'cfg(any(target_os = "linux", target_os = "android", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd"))'.dependencies] -jemallocator = { version = "0.3.1", path = "..", optional = false } +jemallocator = { version = "0.3.2", path = "..", optional = false } # FIXME: https://github.com/gnzlbg/jemallocator/issues/91 # [target.'cfg(target_os = "windows")'.dependencies]