From ef1ee8f3c56ffeb3fc988c294745b88575047c4e Mon Sep 17 00:00:00 2001 From: Jonathan Pallant Date: Fri, 29 Nov 2024 14:09:55 +0000 Subject: [PATCH] Bump to version 0.5.0 We could release as 0.4.1, but you only need these functions when you *actually* need them, and adding extra public no-mangled symbols to a project without asking might be problematic. So, every release is a breaking change and if you need the new APIs, you can just update to it. --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b01a32f..0156618 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## v0.5.0 (2024-11-29) + * [#26] - Add `memchr` * [#27] - Add `qsort` * [#28] - Add `strcat` and `strchr` diff --git a/Cargo.toml b/Cargo.toml index d9e6692..568b822 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tinyrlibc" -version = "0.4.0" +version = "0.5.0" authors = ["Jonathan 'theJPster' Pallant "] edition = "2021" description = "Tiny, incomplete C library for bare-metal targets, written in Stable (but Unsafe) Rust"