diff --git a/CHANGELOG.md b/CHANGELOG.md index aa9e740..79bf4ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,17 @@ ## Unreleased +* None + +## v0.3.0 (2022-10-18) + +* [#11] - Switch to `core::ffi` types (requires Rust 1.64) +* [#10] - Add CI using Github Actions * [#7] - Add `strtoul` and `strcpy` * [#8] - Add `abs` +[#11]: https://github.com/rust-embedded-community/tinyrlibc/pull/11 +[#10]: https://github.com/rust-embedded-community/tinyrlibc/pull/10 [#7]: https://github.com/rust-embedded-community/tinyrlibc/pull/7 [#8]: https://github.com/rust-embedded-community/tinyrlibc/pull/8 diff --git a/Cargo.toml b/Cargo.toml index 94fb7ef..cd84537 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tinyrlibc" -version = "0.2.2" +version = "0.3.0" authors = ["Jonathan 'theJPster' Pallant "] edition = "2018" description = "Tiny, incomplete C library for bare-metal targets, written in Stable (but Unsafe) Rust"