Bump patch versions again
This commit is contained in:
parent
1f5df45ba5
commit
7fef687624
|
@ -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 <alex@alexcrichton.com>",
|
||||
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
|
||||
|
@ -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]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "jemalloc-ctl"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
authors = [
|
||||
"Steven Fackler <sfackler@gmail.com>",
|
||||
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>"
|
||||
|
@ -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" ]
|
||||
rustdoc-args = [ "--cfg", "jemallocator_docs" ]
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "jemalloc-sys"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
authors = [
|
||||
"Alex Crichton <alex@alexcrichton.com>",
|
||||
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
|
||||
|
@ -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" ]
|
||||
|
|
|
@ -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 <gonzalobg88@gmail.com>"]
|
||||
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]
|
||||
|
|
Loading…
Reference in New Issue