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