From 95f7eac16373fdd3c867dba52af4f86dbda9b829 Mon Sep 17 00:00:00 2001 From: Jonathan Pallant Date: Fri, 22 Mar 2024 15:05:09 +0000 Subject: [PATCH] Updated to 0.4.0 Also added some missing CHANGELOG entries. --- CHANGELOG.md | 10 +++++++++- Cargo.toml | 4 ++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d8fb1d..64aa3ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,19 @@ ## Unreleased +* None + +## v0.4.0 (2024-03-22) + * [#23] - Add `strncasecmp` * [#21] - Add signal API +* [#19] - Add malloc/free API +* [#14] - C function exports now gated by feature flags -[#23]: https://github.com/rust-embedded-community/tinyrlibc/pull/21 +[#23]: https://github.com/rust-embedded-community/tinyrlibc/pull/23 [#21]: https://github.com/rust-embedded-community/tinyrlibc/pull/21 +[#19]: https://github.com/rust-embedded-community/tinyrlibc/pull/19 +[#14]: https://github.com/rust-embedded-community/tinyrlibc/pull/14 ## v0.3.0 (2022-10-18) diff --git a/Cargo.toml b/Cargo.toml index c80f068..50600d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "tinyrlibc" -version = "0.3.0" +version = "0.4.0" authors = ["Jonathan 'theJPster' Pallant "] edition = "2021" description = "Tiny, incomplete C library for bare-metal targets, written in Stable (but Unsafe) Rust" license-file = "LICENCES.md" readme = "README.md" -repository = "https://github.com/thejpster/tinyrlibc" +repository = "https://github.com/rust-embedded-community/tinyrlibc" [dependencies] portable-atomic = { version = "1.6.0", optional = true }