From 18519169643b84d328e63b9cf0190ed7d44b9588 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Mon, 5 Mar 2018 10:30:49 -0800 Subject: [PATCH 1/3] Bump to version 0.2.0 Fixes #30 --- CHANGELOG.md | 16 ++++++++++++++++ wee_alloc/Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a74e5cc --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +### 0.2.0 + +Released 2018/03/05. + +* Updated to work with rustc's LLVM 6 upgrade and the change of intrinsic link + names. + +* Added windows support. + +* Added @pepyakin and @DrGoldfire to the `wee_alloc` team \o/ + +### 0.1.0 + +Released 2018/02/02. + +* Initial release! diff --git a/wee_alloc/Cargo.toml b/wee_alloc/Cargo.toml index 8530b63..d29c0fb 100644 --- a/wee_alloc/Cargo.toml +++ b/wee_alloc/Cargo.toml @@ -6,7 +6,7 @@ license = "MPL-2.0" name = "wee_alloc" readme = "../README.md" repository = "https://github.com/fitzgen/wee_alloc" -version = "0.1.0" +version = "0.2.0" [badges] travis-ci = { repository = "fitzgen/wee_alloc" } From da3c7b0caf0a03392613239de0c2a4c646d1e87a Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Tue, 6 Mar 2018 09:10:31 -0800 Subject: [PATCH 2/3] Enable LTO so LLD can shrink the example's code size --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 9fdfe63..c3b1901 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,5 +2,6 @@ members = ["./wee_alloc", "./test", "./example"] [profile.release] +lto = true debug = true opt-level = "z" From a22e9a25d4cd5bef63332e9a4cbde57c643bb51b Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Tue, 6 Mar 2018 09:11:50 -0800 Subject: [PATCH 3/3] Mention arbitrary alignment in the changelog --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a74e5cc..2677b3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ ### 0.2.0 -Released 2018/03/05. +Released 2018/03/06. + +* Added support for allocations with arbitrary alignments. * Updated to work with rustc's LLVM 6 upgrade and the change of intrinsic link names.