diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2677b3e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +### 0.2.0 + +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. + +* 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/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" 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" }