From: Ian Jackson Date: Sun, 2 Feb 2025 16:59:43 +0000 (+0000) Subject: Update version to 1.2.0 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=e98f20af8c37f89203f2b38d935559efa83394b4;p=hippotat.git Update version to 1.2.0 Signed-off-by: Ian Jackson --- diff --git a/Cargo.lock b/Cargo.lock index 7791fc6..4fe9227 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -588,7 +588,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hippotat" -version = "1.1.12" +version = "1.2.0" dependencies = [ "backtrace", "base64", @@ -634,7 +634,7 @@ dependencies = [ [[package]] name = "hippotat-macros" -version = "1.1.12" +version = "1.2.0" dependencies = [ "itertools", "proc-macro2", diff --git a/Cargo.lock.minimal b/Cargo.lock.minimal index 745a9a4..5e9cab9 100644 --- a/Cargo.lock.minimal +++ b/Cargo.lock.minimal @@ -623,7 +623,7 @@ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" [[package]] name = "hippotat" -version = "1.1.12" +version = "1.2.0" dependencies = [ "backtrace", "base64 0.21.0", @@ -669,7 +669,7 @@ dependencies = [ [[package]] name = "hippotat-macros" -version = "1.1.12" +version = "1.2.0" dependencies = [ "itertools", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 73e751e..8769369 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "hippotat" -version = "1.1.12" +version = "1.2.0" edition = "2018" description="Asinine HTTP-over-IP" license="GPL-3.0-or-later" @@ -26,7 +26,7 @@ path="server/server.rs" [dependencies] -hippotat-macros = { version = "1.1.3", path = "macros" } +hippotat-macros = { version = "1.2.0", path = "macros" } backtrace = "0.3.74" base64 = ">=0.21, <0.23" diff --git a/debian/changelog b/debian/changelog index 41c3e7a..d33b4ef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,28 @@ +hippotat (1.2.0) unstable; urgency=medium + + HTTP implementation changed: + * Client now uses reqwest (and thus hyper 1) + * Server now uses hyper 1 + * Closes: #1094093. [Report from Lucas Nussbaum] + + Build system: + * Makefile: Add + sigil before cargo invocations. + Fixes compatibility with recent GNU make. + * autopkgtests: Declare isolation-machine restriction, + rather than x-hippotat-adt-broken-in-debci. + + Dependency updates: + * New deps: http-body 1.0.1, http-body-util 0.1.2, hyper-util 0.1.10 + * Require backtrace 0.3.74, tokio 1.43 + * Allow educe 0.6, itertools 0.14, thiserror 2 + * cargo update (upstream Cargo.lock) + + Internal tidying up: + * HACKING.md: New file with some notes in. + * Clarifications to config item defaulting traits. + + -- Ian Jackson Sun, 02 Feb 2025 16:59:18 +0000 + hippotat (1.1.12) unstable; urgency=medium Dependency updates: diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 9b6ab25..10991f8 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "hippotat-macros" -version = "1.1.12" +version = "1.2.0" edition = "2018" description="Asinine HTTP-over-IP, proc-macros" license="GPL-3.0-or-later"