From 835864dfe2c1f4c480da883cb411eaf6d5a442c3 Mon Sep 17 00:00:00 2001 From: Lotte Steenbrink Date: Thu, 26 Nov 2020 16:13:27 +0100 Subject: [PATCH] v0.1.1 --- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..72f99c2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,22 @@ +# Change Log + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/) +and this project adheres to [Semantic Versioning](http://semver.org/). + +## [Unreleased] + +## [v0.1.1] - 2020-11-26 + +### Fixed +- [#17] attributes in linker scripts do not cause parse errors anymore (they are ignored) + +[#17]: https://github.com/knurling-rs/flip-link/pull/17 + +## v0.1.0 - 2020-10-16 + +Initial release + +[Unreleased]: https://github.com/knurling-rs/flip-link/compare/v0.1.1...main +[v0.1.1]: https://github.com/knurling-rs/flip-link/compare/v0.1.0...v0.1.1 diff --git a/Cargo.lock b/Cargo.lock index 46b5e23..4082509 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -74,7 +74,7 @@ dependencies = [ [[package]] name = "flip-link" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 71de021..0feba6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "stack-protection"] license = "MIT OR Apache-2.0" name = "flip-link" repository = "https://github.com/knurling-rs/flip-link" -version = "0.1.0" +version = "0.1.1" [dependencies] anyhow = "1.0.32"