From bca1d9ea0485b065544486bb01f4148d44289644 Mon Sep 17 00:00:00 2001 From: Paul Razvan Berg Date: Thu, 13 Jul 2023 16:58:19 +0300 Subject: [PATCH] docs: roll v1.0.1 docs: add CHANGELOG --- CHANGELOG.md | 24 ++++++++++++++++++++++++ package.json | 3 ++- 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..24d784213 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,24 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Common Changelog](https://common-changelog.org/). + +[1.0.1]: https://github.com/sablier-labs/v2-core/compare/v1.0.0...v1.0.1 +[1.0.0]: https://github.com/sablier-labs/v2-core/releases/tag/v1.0.0 + +## [1.0.1] - 2023-07-13 + +### Changed + +- Optimize use of variables in `tokenURI` ([#617](https://github.com/sablier-labs/v2-core/pull/617)) + +### Fixed + +- Fix data URI scheme in `tokenURI` ([#617](https://github.com/sablier-labs/v2-core/pull/617)) + +## [1.0.0] - 2023-07-07 + +### Added + +- Initial release diff --git a/package.json b/package.json index 73c2c364c..b13bfcb23 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@sablier/v2-core", "description": "Core smart contracts of the Sablier V2 token streaming protocol", "license": "BUSL-1.1", - "version": "1.0.0", + "version": "1.0.1", "author": { "name": "Sablier Labs Ltd", "url": "https://sablier.com" @@ -21,6 +21,7 @@ "files": [ "artifacts", "src", + "CHANGELOG.md", "LICENSE-GPL.md" ], "homepage": "https://github.com/sablier-labs/v2-core#readme",