From 91a894e36946150887ad0846d80e3732bcb20500 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Sat, 12 May 2018 21:06:19 +0200 Subject: [PATCH] v0.3.0 --- CHANGELOG.md | 6 ++++-- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be91fe4..c2a3bf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,11 +17,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Updated the `allocator` example to compile on a recent nightly. -- Removed `opt-level = "s"` from `profile.release`. This flag is still unstable. - - Set the number of codegen-units to 1 when compiling in release mode. This produces smaller and faster binaries. +### Removed + +- Removed `opt-level = "s"` from `profile.release`. This flag is still unstable. + ## [v0.2.7] - 2018-04-24 ### Changed diff --git a/Cargo.toml b/Cargo.toml index a1f9148..2325cc5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,4 +28,4 @@ panic-semihosting = "0.2.0" [profile.release] codegen-units = 1 # better optimizations debug = true -lto = true +lto = true # better optimizations