diff --git a/CHANGELOG.md b/CHANGELOG.md index 548ae03..d9df97b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] - xxxx-xx-xx +## [v1.20.0] - 2023-10-10 + * New endpoints [#187](https://github.com/sharetribe/flex-sdk-js/pull/187) * `sdk.sitemapData.queryListings(/* ... */)` * `sdk.sitemapData.queryAssets(/* ... */)` @@ -285,8 +287,9 @@ See: https://www.npmjs.com/package/sharetribe-flex-sdk to prepare for publishing to NPM. Remember to check your existing imports! -[unreleased]: https://github.com/sharetribe/flex-sdk-js/compare/v1.19.0...HEAD +[unreleased]: https://github.com/sharetribe/flex-sdk-js/compare/v1.20.0...HEAD +[v1.20.0]: https://github.com/sharetribe/flex-sdk-js/compare/v1.19.0...v1.20.0] [v1.19.0]: https://github.com/sharetribe/flex-sdk-js/compare/v1.18.1...v1.19.0] [v1.18.1]: https://github.com/sharetribe/flex-sdk-js/compare/v1.18.0...v1.18.1] [v1.18.0]: https://github.com/sharetribe/flex-sdk-js/compare/v1.17.0...v1.18.0] diff --git a/package.json b/package.json index 06cf872..6a9c538 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sharetribe-flex-sdk", - "version": "1.19.0", + "version": "1.20.0", "description": "Sharetribe Flex SDK for JavaScript", "main": "build/sharetribe-flex-sdk-node.js", "browser": "build/sharetribe-flex-sdk-web.js", diff --git a/src/version.js b/src/version.js index 247de81..f919c82 100644 --- a/src/version.js +++ b/src/version.js @@ -1,3 +1,3 @@ // Update this when updating package.json -const sdkVersion = '1.19.0'; +const sdkVersion = '1.20.0'; export default sdkVersion;