From 232dbfa136105a34caf502f6d63723beaf84bd01 Mon Sep 17 00:00:00 2001 From: LeoniePhiline <22329650+LeoniePhiline@users.noreply.github.com> Date: Tue, 29 Nov 2022 04:52:46 +0100 Subject: [PATCH] release: 0.1.4 --- CHANGELOG.md | 7 ++++--- Cargo.toml | 2 +- README.md | 2 +- examples/cross-site/Cargo.toml | 2 +- examples/same-site/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d718259..0d13095 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.4] - 2022-11-29 + ### Added - Tested code coverage and added tests covering the error path. @@ -22,8 +24,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Rewrote example / demo projects to never panic, but use appropriate error handling instead. - Removed direct dependency on `async-session`, using the re-export from `axum-sessions` instead. -### Fixed - ## [0.1.3] - 2022-11-24 ### Fixed @@ -50,7 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Example / demo projects for same-site and cross-site usage. - Added full crate documentation. -[unreleased]: https://github.com/LeoniePhiline/axum-csrf-sync-pattern/compare/0.1.3...HEAD +[unreleased]: https://github.com/LeoniePhiline/axum-csrf-sync-pattern/compare/0.1.4...HEAD +[0.1.4]: https://github.com/LeoniePhiline/axum-csrf-sync-pattern/compare/0.1.3...0.1.4 [0.1.3]: https://github.com/LeoniePhiline/axum-csrf-sync-pattern/compare/0.1.2...0.1.3 [0.1.2]: https://github.com/LeoniePhiline/axum-csrf-sync-pattern/compare/0.1.1...0.1.2 [0.1.1]: https://github.com/LeoniePhiline/axum-csrf-sync-pattern/compare/0.1.0...0.1.1 diff --git a/Cargo.toml b/Cargo.toml index 94bcbcf..3488bd5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://github.com/LeoniePhiline/axum-csrf-sync-pattern" license = "Apache-2.0" readme = "README.md" -version = "0.1.3" +version = "0.1.4" edition = "2021" [badges] diff --git a/README.md b/README.md index 358b64c..f06dc67 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ More information about this crate can be found in the [crate documentation][docs ## Installation ```toml -axum-csrf-sync-pattern = "0.1.3" +axum-csrf-sync-pattern = "0.1.4" ``` ## Examples diff --git a/examples/cross-site/Cargo.toml b/examples/cross-site/Cargo.toml index 4466dfa..80d2ed8 100644 --- a/examples/cross-site/Cargo.toml +++ b/examples/cross-site/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cross-site" authors = ["LeoniePhiline "] -version = "0.1.3" +version = "0.1.4" edition = "2021" publish = false diff --git a/examples/same-site/Cargo.toml b/examples/same-site/Cargo.toml index 96fd2da..ebf5bd1 100644 --- a/examples/same-site/Cargo.toml +++ b/examples/same-site/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "same-site" authors = ["LeoniePhiline "] -version = "0.1.3" +version = "0.1.4" edition = "2021" publish = false