From e7d67b1066c13743cf2136429f61bf94e3f0ab55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 6 Sep 2024 10:08:33 +0300 Subject: [PATCH] Release 0.1.3 --- CHANGELOG.md | 11 ++++++++++- Cargo.lock.msrv | 2 +- Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61a3bc2..639550e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v ## [Unreleased] +## [0.1.3]- 2024-09-06 +### Added +- Add serde-derived `Serialize` / `Deserialize` implementations behind a + feature flag. + +### Changed +- Update MSRV to 1.65. + ## [0.1.2]- 2024-06-13 ### Fixed - Fix build with new `tinyvec` that requires to explictly enable `alloc` @@ -54,7 +62,8 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v ## 0.0.1 - 2020-11-13 - Initial release of the `rtsp-types` crate. -[Unreleased]: https://github.com/sdroege/rtsp-types/compare/0.1.2...HEAD +[Unreleased]: https://github.com/sdroege/rtsp-types/compare/0.1.3...HEAD +[0.1.3]: https://github.com/sdroege/rtsp-types/compare/0.1.2...0.1.3 [0.1.2]: https://github.com/sdroege/rtsp-types/compare/0.1.1...0.1.2 [0.1.1]: https://github.com/sdroege/rtsp-types/compare/0.1.0...0.1.1 [0.1.0]: https://github.com/sdroege/rtsp-types/compare/0.0.5...0.1.0 diff --git a/Cargo.lock.msrv b/Cargo.lock.msrv index 373d22c..0132c26 100644 --- a/Cargo.lock.msrv +++ b/Cargo.lock.msrv @@ -75,7 +75,7 @@ dependencies = [ [[package]] name = "rtsp-types" -version = "0.1.2" +version = "0.1.3" dependencies = [ "cookie-factory", "nom", diff --git a/Cargo.toml b/Cargo.toml index 1983847..55b229c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rtsp-types" -version = "0.1.2" +version = "0.1.3" authors = ["Sebastian Dröge "] repository = "https://github.com/sdroege/rtsp-types" edition = "2018"