diff --git a/CHANGELOG.md b/CHANGELOG.md index ddac5e8..cb6fdfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,14 @@ For the full commit log, [see here](https://github.com/influxdata/influxdb-ruby/commits/master). -## unreleased +## v0.8.1, release 2021-02-17 - Ensure workers can send data popped off the queue at shutdown (#239, @onlynone) +- Add support for special characters in password when using url keyword (#242, + @swistak35) +- Add Ruby 3.0 support (#249, @dentarg, @paul and @track8) +- Support characters that need quoting for usernames and database names (#248, @estheruary) ## v0.8.0, released 2020-02-05 diff --git a/lib/influxdb/version.rb b/lib/influxdb/version.rb index 7f3991c..789d357 100644 --- a/lib/influxdb/version.rb +++ b/lib/influxdb/version.rb @@ -1,3 +1,3 @@ module InfluxDB # :nodoc: - VERSION = "0.8.0".freeze + VERSION = "0.8.1".freeze end