Skip to content

Commit

Permalink
v0.1.37
Browse files Browse the repository at this point in the history
  • Loading branch information
octavonce committed Apr 25, 2023
1 parent d55d781 commit 934a2fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mimalloc"
version = "0.1.36"
version = "0.1.37"
authors = [
"Octavian Oncescu <octavonce@gmail.com>",
"Vincent Rouillé <vincent@speedy37.fr>",
Expand All @@ -21,7 +21,7 @@ members = ["libmimalloc-sys", "libmimalloc-sys/sys-test"]
travis-ci = { repository = "purpleprotocol/mimalloc_rust" }

[dependencies]
libmimalloc-sys = { path = "libmimalloc-sys", version = "0.1.32", default-features = false }
libmimalloc-sys = { path = "libmimalloc-sys", version = "0.1.33", default-features = false }

[features]
default = ["secure"]
Expand Down
2 changes: 1 addition & 1 deletion libmimalloc-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libmimalloc-sys"
version = "0.1.32"
version = "0.1.33"
authors = ["Octavian Oncescu <octavonce@gmail.com>"]
edition = "2018"
repository = "https://github.com/purpleprotocol/mimalloc_rust/tree/master/libmimalloc-sys"
Expand Down
2 changes: 1 addition & 1 deletion libmimalloc-sys/c_src/mimalloc
Submodule mimalloc updated 47 files
+1 −1 CMakeLists.txt
+1 −1 cmake/mimalloc-config-version.cmake
+4 −4 doc/mimalloc-doc.h
+1 −1 ide/vs2017/mimalloc-override.vcxproj
+3 −0 ide/vs2017/mimalloc-override.vcxproj.filters
+1 −1 ide/vs2017/mimalloc.vcxproj
+3 −3 ide/vs2017/mimalloc.vcxproj.filters
+1 −1 ide/vs2019/mimalloc-override.vcxproj
+3 −0 ide/vs2019/mimalloc-override.vcxproj.filters
+1 −1 ide/vs2019/mimalloc.vcxproj
+3 −0 ide/vs2019/mimalloc.vcxproj.filters
+1 −1 ide/vs2022/mimalloc-override.vcxproj
+107 −0 ide/vs2022/mimalloc-override.vcxproj.filters
+7 −0 ide/vs2022/mimalloc-test-api.vcxproj
+1 −2 ide/vs2022/mimalloc.vcxproj
+96 −0 ide/vs2022/mimalloc.vcxproj.filters
+37 −31 include/mimalloc.h
+46 −8 include/mimalloc/atomic.h
+55 −29 include/mimalloc/internal.h
+22 −10 include/mimalloc/prim.h
+1 −1 include/mimalloc/track.h
+59 −16 include/mimalloc/types.h
+43 −37 readme.md
+12 −21 src/alloc-aligned.c
+3 −1 src/alloc-override.c
+2 −1 src/alloc-posix.c
+33 −10 src/alloc.c
+558 −148 src/arena.c
+58 −40 src/bitmap.c
+4 −0 src/bitmap.h
+10 −12 src/heap.c
+44 −23 src/init.c
+47 −39 src/options.c
+192 −113 src/os.c
+20 −16 src/page.c
+2 −2 src/prim/osx/alloc-override-zone.c
+67 −46 src/prim/unix/prim.c
+14 −4 src/prim/wasi/prim.c
+30 −15 src/prim/windows/prim.c
+0 −501 src/region.c
+0 −423 src/segment-cache.c
+153 −0 src/segment-map.c
+146 −172 src/segment.c
+1 −1 src/static.c
+23 −10 src/stats.c
+32 −4 test/test-api.c
+19 −8 test/test-stress.c

0 comments on commit 934a2fb

Please sign in to comment.