diff --git a/CHANGELOG.md b/CHANGELOG.md index 34ca4247..8f521094 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Mechanize CHANGELOG -## next / unreleased +## 2.11.0 / 2024-07-18 * The `accept-charset` header is no longer sent. In early versions of Mechanize, circa 2007, this was a common header but now no modern browser sends it, and servers are instructed to ignore it. See #646 for an example of a server that is confused by its presence. (#647) @flavorjones diff --git a/lib/mechanize/version.rb b/lib/mechanize/version.rb index 4e94c129..28475b0a 100644 --- a/lib/mechanize/version.rb +++ b/lib/mechanize/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true class Mechanize - VERSION = "2.10.1" + VERSION = "2.11.0" end