From 5390f71f323056c51fb6582ff51de3e74ea535ff Mon Sep 17 00:00:00 2001 From: DanGould Date: Tue, 31 Dec 2024 11:51:05 -0500 Subject: [PATCH] Bump ohttp-relay 0.0.9 Also add a CHANGELOG.md starting on 0.0.9. Summary of 0.0.9 changes: - Add _test-util feature for testing with listen_tcp_on_free_port --- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b154374 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# ohttp-relay Changelog + +## 0.0.9 + +- Add `_test-util` feature to allow testing with `listen_tcp_on_free_port` diff --git a/Cargo.lock b/Cargo.lock index 7aeaa7a..09a61a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -577,7 +577,7 @@ dependencies = [ [[package]] name = "ohttp-relay" -version = "0.0.8" +version = "0.0.9" dependencies = [ "futures", "hex-conservative", diff --git a/Cargo.toml b/Cargo.toml index 4024878..486c779 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ohttp-relay" -version = "0.0.8" +version = "0.0.9" authors = ["Dan Gould "] description = "Relay Oblivious HTTP requests to protect IP metadata" repository = "https://github.com/payjoin/ohttp-relay"