diff --git a/.VERSION b/.VERSION index 359a5b95..50aea0e7 100644 --- a/.VERSION +++ b/.VERSION @@ -1 +1 @@ -2.0.0 \ No newline at end of file +2.1.0 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c4315d32..318ccba3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,22 @@ --- +[//]: # (START/v2.1.0) +# v2.1.0 + +## Features + * Add support for Document Item category in item data source. {#171} + * Add support for getting file attachments of an item in item data source. {#171} + * Add support for getting an API Credential item's credential value in item data source. {#151} + * Add support for SSH Key Item category in item data source. {#158} + +## Fixes + * Set password to null if not set. {#173} + * Throw a better error message when item creation fails. {#174} + * Improve examples and documentation. {#174} + +--- + [//]: # (START/v2.0.0) # v2.0.0 diff --git a/version/version.go b/version/version.go index d9582432..eb758d5e 100644 --- a/version/version.go +++ b/version/version.go @@ -2,5 +2,5 @@ package version var ( // ProviderVersion is set during release. - ProviderVersion = "2.0.0" + ProviderVersion = "2.1.0" )