From a3ac1993e95cccbcb61ead3fecdd047317729d79 Mon Sep 17 00:00:00 2001 From: HoneyryderChuck Date: Wed, 4 Oct 2023 15:07:02 +0100 Subject: [PATCH] bumped version to 1.0.1 --- doc/release_notes/1_0_1.md | 5 +++++ lib/httpx/version.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 doc/release_notes/1_0_1.md diff --git a/doc/release_notes/1_0_1.md b/doc/release_notes/1_0_1.md new file mode 100644 index 00000000..4817449f --- /dev/null +++ b/doc/release_notes/1_0_1.md @@ -0,0 +1,5 @@ +# 1.0.1 + +## Bugfixes + +* do not try to inflate empty chunks (it triggered an error during response decoding). \ No newline at end of file diff --git a/lib/httpx/version.rb b/lib/httpx/version.rb index 67f698b2..295cf9bb 100644 --- a/lib/httpx/version.rb +++ b/lib/httpx/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module HTTPX - VERSION = "1.0.0" + VERSION = "1.0.1" end