From 68b4a2afdd8bf0bac34418729d818d3cd30d0052 Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Fri, 1 Nov 2024 10:07:44 +0900 Subject: [PATCH] [skip ci] update changelog --- CHANGELOG.md | 6 ++++-- rpxy-acme/Cargo.toml | 2 +- rpxy-certs/Cargo.toml | 2 +- rpxy-lib/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74a82d0..2bcf601 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,17 @@ # CHANGELOG -## 0.9.3 or 0.10.0 (Unreleased) +## 0.10.0 (Unreleased) + +## 0.9.3 ### Improvement +- Feat: Support post-quantum `X25519Kyber768Draft00` for incoming TLS initiation. This is non-default feature [feature: `post-quantum`]. Upstream connection to backend applications does not yet support PQC. - Feat: emit WARN messages if there exist unused and unsupported options specified in configuration file. - Docs: `rpxy.io` is now available for the official website of `rpxy`. - Refactor: lots of minor improvements - Deps - ## 0.9.2 ### Improvement diff --git a/rpxy-acme/Cargo.toml b/rpxy-acme/Cargo.toml index 80fe15c..6b7b96e 100644 --- a/rpxy-acme/Cargo.toml +++ b/rpxy-acme/Cargo.toml @@ -16,7 +16,7 @@ post-quantum = ["rustls-post-quantum"] [dependencies] url = { version = "2.5.2" } rustc-hash = "2.0.0" -thiserror = "1.0.65" +thiserror = "1.0.66" tracing = "0.1.40" async-trait = "0.1.83" base64 = "0.22.1" diff --git a/rpxy-certs/Cargo.toml b/rpxy-certs/Cargo.toml index 8d9560e..ba39e6c 100644 --- a/rpxy-certs/Cargo.toml +++ b/rpxy-certs/Cargo.toml @@ -19,7 +19,7 @@ http3 = [] rustc-hash = { version = "2.0.0" } tracing = { version = "0.1.40" } derive_builder = { version = "0.20.2" } -thiserror = { version = "1.0.65" } +thiserror = { version = "1.0.66" } hot_reload = { version = "0.1.6" } async-trait = { version = "0.1.83" } rustls = { version = "0.23.16", default-features = false, features = [ diff --git a/rpxy-lib/Cargo.toml b/rpxy-lib/Cargo.toml index 33eb135..dc5d09a 100644 --- a/rpxy-lib/Cargo.toml +++ b/rpxy-lib/Cargo.toml @@ -54,7 +54,7 @@ async-trait = "0.1.83" # Error handling anyhow = "1.0.91" -thiserror = "1.0.65" +thiserror = "1.0.66" # http for both server and client http = "1.1.0"