From 46862068b2b4a0eaae4e93c110ecb1767aeda655 Mon Sep 17 00:00:00 2001 From: HoneyryderChuck Date: Fri, 12 Feb 2021 11:15:19 +0000 Subject: [PATCH] bumped to 0.11.2 --- doc/release_notes/0_11_2.md | 5 +++++ lib/httpx/version.rb | 2 +- www/_data/versions.yml | 3 +++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 doc/release_notes/0_11_2.md diff --git a/doc/release_notes/0_11_2.md b/doc/release_notes/0_11_2.md new file mode 100644 index 00000000..d5e836f8 --- /dev/null +++ b/doc/release_notes/0_11_2.md @@ -0,0 +1,5 @@ +# 0.11.2 + +## Bugfixes + +The `:cookies` plugin wasn't able to parse `Expires` values, as it was using `Time.httpdate` to parse timestamps, which is RFC 2616-compliant, whereas cookies datetime values need to be RFC 6265-compliant. \ No newline at end of file diff --git a/lib/httpx/version.rb b/lib/httpx/version.rb index 33980a54..52825644 100644 --- a/lib/httpx/version.rb +++ b/lib/httpx/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module HTTPX - VERSION = "0.11.1" + VERSION = "0.11.2" end diff --git a/www/_data/versions.yml b/www/_data/versions.yml index 015a52ef..0d6a2328 100644 --- a/www/_data/versions.yml +++ b/www/_data/versions.yml @@ -1,4 +1,7 @@ - + - + name: "0.11.2" + path: "0_11_2_md.html" - name: "0.11.1" path: "0_11_1_md.html"