diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fc3cc3..a26b594 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [0.5.1] 2024-12-03 + +### Added + +- Supports https for vite development (thanks @Dsaquel #32) + ## [0.5.0] 2024-06-26 ### Added diff --git a/Cargo.lock b/Cargo.lock index 42f89da..6a253ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,7 +91,7 @@ dependencies = [ [[package]] name = "axum-inertia" -version = "0.5.0" +version = "0.5.1" dependencies = [ "async-trait", "axum", diff --git a/Cargo.toml b/Cargo.toml index 8c128ba..505f8b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum-inertia" -version = "0.5.0" +version = "0.5.1" edition = "2021" authors = ["Mikey Hoy "] license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 7725bbb..751a6f1 100644 --- a/README.md +++ b/README.md @@ -24,5 +24,7 @@ See [crate documentation] for more information. 1. Spin off a `bump-vX.X.X` branch 2. Update the `CHANGELOG`; start a new `[Unreleased]` section 3. Bump the version number in `Cargo.toml` -4. Run `cargo release --execute` +4. Run `cargo release --execute` (requires [cargo-release][cargo-release]) 5. Merge PR if all goes well + +[cargo-release]: https://github.com/crate-ci/cargo-release