Skip to content

Commit

Permalink
v0.1.33 release
Browse files Browse the repository at this point in the history
  • Loading branch information
octavonce committed Jan 7, 2023
1 parent 40c0340 commit 7f0a5c1
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.32"
version = "0.1.33"
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.28", default-features = false }
libmimalloc-sys = { path = "libmimalloc-sys", version = "0.1.29", 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.28"
version = "0.1.29"
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 72 files
+41 −18 CMakeLists.txt
+2 −2 azure-pipelines.yml
+1 −1 cmake/mimalloc-config-version.cmake
+4 −4 cmake/mimalloc-config.cmake
+6 −6 doc/mimalloc-doc.h
+4 −4 docs/annotated.html
+4 −4 docs/bench.html
+4 −4 docs/build.html
+4 −4 docs/classes.html
+29 −30 docs/doxygen.css
+4 −4 docs/environment.html
+4 −4 docs/functions.html
+4 −4 docs/functions_vars.html
+5 −5 docs/group__aligned.html
+5 −5 docs/group__analysis.html
+5 −5 docs/group__cpp.html
+5 −5 docs/group__extended.html
+5 −5 docs/group__heap.html
+5 −5 docs/group__malloc.html
+5 −5 docs/group__options.html
+5 −5 docs/group__posix.html
+5 −5 docs/group__typed.html
+5 −5 docs/group__zeroinit.html
+4 −4 docs/index.html
+4 −4 docs/mimalloc-doc_8h_source.html
+4 −4 docs/modules.html
+1 −2 docs/navtree.css
+4 −4 docs/overrides.html
+4 −4 docs/pages.html
+6 −7 docs/search/search.css
+0 −1 docs/search/searchdata.js
+0 −1 docs/tabs.css
+4 −4 docs/using.html
+4 −4 ide/vs2017/mimalloc-override.vcxproj
+71 −71 ide/vs2017/mimalloc.sln
+4 −4 ide/vs2019/mimalloc-override.vcxproj
+81 −81 ide/vs2019/mimalloc.sln
+5 −5 ide/vs2022/mimalloc-override.vcxproj
+81 −81 ide/vs2022/mimalloc.sln
+1 −1 ide/vs2022/mimalloc.vcxproj
+5 −5 include/mimalloc-atomic.h
+50 −27 include/mimalloc-internal.h
+14 −5 include/mimalloc-new-delete.h
+28 −9 include/mimalloc-track.h
+35 −28 include/mimalloc-types.h
+110 −22 include/mimalloc.h
+35 −30 readme.md
+52 −18 src/alloc-aligned.c
+12 −12 src/alloc-override-osx.c
+35 −21 src/alloc-override.c
+4 −4 src/alloc-posix.c
+184 −111 src/alloc.c
+29 −28 src/arena.c
+11 −11 src/bitmap.c
+23 −10 src/heap.c
+47 −26 src/init.c
+36 −21 src/options.c
+79 −43 src/os.c
+3 −2 src/page-queue.c
+54 −30 src/page.c
+46 −11 src/random.c
+51 −41 src/region.c
+52 −11 src/segment-cache.c
+210 −140 src/segment.c
+63 −29 src/stats.c
+12 −7 test/main-override-static.c
+57 −3 test/main-override.cpp
+2 −2 test/test-api-fill.c
+58 −13 test/test-api.c
+3 −3 test/test-stress.c
+8 −8 test/test-wrong.c
+5 −5 test/testhelper.h

0 comments on commit 7f0a5c1

Please sign in to comment.