diff --git a/CHANGELOG b/CHANGELOG index b12fe52..b9b4047 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +# Version 0.7.0 (2018-11-18) + +- Fix conditional compilation flags never stripping QADAPT code + # Version 0.6.0 (2018-11-17) - Fixed exit early bugs when closures contained `return` statements \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 16247d4..5ea2fec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qadapt" -version = "0.6.0" +version = "0.7.0" authors = ["Bradlee Speice "] description = "The Quick And Dirty Allocation Profiling Tool" license = "Apache-2.0" @@ -22,4 +22,4 @@ libc = "0.2" spin = "0.4" thread-id = "3.3" -qadapt-macro = { version = "0.6.0", path = "./qadapt-macro" } \ No newline at end of file +qadapt-macro = { version = "0.7.0", path = "./qadapt-macro" } \ No newline at end of file diff --git a/qadapt-macro/Cargo.toml b/qadapt-macro/Cargo.toml index 012cccb..9966ab3 100644 --- a/qadapt-macro/Cargo.toml +++ b/qadapt-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qadapt-macro" -version = "0.6.0" +version = "0.7.0" authors = ["Bradlee Speice "] description = "The Quick And Dirty Allocation Profiling Tool - Support Macros" license = "Apache-2.0"