Skip to content

Bump to version 0.2.0 #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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!
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
members = ["./wee_alloc", "./test", "./example"]

[profile.release]
lto = true
debug = true
opt-level = "z"
2 changes: 1 addition & 1 deletion wee_alloc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down