diff --git a/CHANGELOG.md b/CHANGELOG.md index d75f969..4144b72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.5.3](https://github.com/luizfonseca/proksi/compare/proksi-v0.5.3...proksi-v0.5.3) (2025-01-04) + + +### Bug Fixes + +* allow https and http addresses to be provided via configuration ([bb52d17](https://github.com/luizfonseca/proksi/commit/bb52d173d11c4506e5bcae5c0a38c2bb7c56aba5)) +* avoid renewal e-mails from Let's Encrypt ([#183](https://github.com/luizfonseca/proksi/issues/183)) ([0ab5c12](https://github.com/luizfonseca/proksi/commit/0ab5c121504638c259a2501d21328f1f384e1282)) +* failing certificate renewal causing a panic due to .unwrap() call ([6e11bc9](https://github.com/luizfonseca/proksi/commit/6e11bc938f2feb72de898530f774df8f56421d5e)) +* linting ([5de49ba](https://github.com/luizfonseca/proksi/commit/5de49ba28975da8b89b648e492653498539ef06a)) + ## [0.5.2](https://github.com/luizfonseca/proksi/compare/proksi-v0.5.2...proksi-v0.5.2) (2025-01-04) diff --git a/Cargo.lock b/Cargo.lock index 8a70677..9d7ed29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2865,7 +2865,7 @@ dependencies = [ [[package]] name = "proksi" -version = "0.5.2" +version = "0.5.3" dependencies = [ "TinyUFO", "acme-v2", diff --git a/crates/proksi/Cargo.toml b/crates/proksi/Cargo.toml index cc67849..94bf401 100644 --- a/crates/proksi/Cargo.toml +++ b/crates/proksi/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "proksi" description = "A batteries-included reverse proxy with automatic HTTPS using Cloudflare Pingora and Let's Encrypt." -version = "0.5.2" +version = "0.5.3" edition = "2021" license = "MIT OR Apache-2.0" keywords = ["proxy", "https", "reverse-proxy", "load-balancer", "pingora"]