From 6437b4b5fbcbe045481bc860a9e1e9d8af6bccbe Mon Sep 17 00:00:00 2001 From: HoneyryderChuck Date: Mon, 20 Nov 2023 10:15:50 +0000 Subject: [PATCH] bump version to 1.1.4 --- doc/release_notes/1_1_3.md | 2 +- doc/release_notes/1_1_4.md | 6 ++++++ lib/httpx/version.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 doc/release_notes/1_1_4.md diff --git a/doc/release_notes/1_1_3.md b/doc/release_notes/1_1_3.md index d943c961..c28e0ea4 100644 --- a/doc/release_notes/1_1_3.md +++ b/doc/release_notes/1_1_3.md @@ -1,4 +1,4 @@ -# 1.1.2 +# 1.1.3 ## improvements diff --git a/doc/release_notes/1_1_4.md b/doc/release_notes/1_1_4.md new file mode 100644 index 00000000..9f026947 --- /dev/null +++ b/doc/release_notes/1_1_4.md @@ -0,0 +1,6 @@ +# 1.1.4 + +## bug reports + +* datadog adapter: use `Gem::Version` to invoke the correct configuration API. +* stream plugin: do not preempt request enqueuing (this was making integration with the `:follow_redirects` plugin fail when set up with `webmock`). diff --git a/lib/httpx/version.rb b/lib/httpx/version.rb index 356731af..4d59dbac 100644 --- a/lib/httpx/version.rb +++ b/lib/httpx/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module HTTPX - VERSION = "1.1.3" + VERSION = "1.1.4" end