diff --git a/doc/release_notes/0_24_7.md b/doc/release_notes/0_24_7.md new file mode 100644 index 00000000..ab5cc09f --- /dev/null +++ b/doc/release_notes/0_24_7.md @@ -0,0 +1,10 @@ +# 0.24.6 + +## dependencies + +`http-2-next` last supported version for the 0.x series is the last version before v1. This shoul ensure that older versions of `httpx` won't be affected by any of the recent breaking changes. + +## Bugfixes + +* `grpc`: setup of rpc calls from camel-cased symbols has been fixed. As an improvement, the GRPC-enabled session will now support both snake-cased, as well as camel-cased calls. +* `datadog` adapter has now been patched to support the most recent breaking changes of `ddtrace` configuration DSL (`env_to_bool` is no longer supported). \ No newline at end of file diff --git a/lib/httpx/version.rb b/lib/httpx/version.rb index 295cf9bb..9624b3aa 100644 --- a/lib/httpx/version.rb +++ b/lib/httpx/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module HTTPX - VERSION = "1.0.1" + VERSION = "0.24.7" end