Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release lsp-smart-contracts 0.13.0 #816

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.12.1"
".": "0.12.0"
}
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [0.13.0](https://github.com/lukso-network/lsp-smart-contracts/compare/lsp-smart-contracts-v0.13.0...lsp-smart-contracts-v0.12.1) (2023-11-30)

### ⚠ BREAKING CHANGES

- Emit full DataChanged Event in LSP0 and LSP7, LSP8 ([#814](https://github.com/lukso-network/lsp-smart-contracts/issues/814))
- Add `batchCalls(...)` to LSP7 & LSP8 ([#810](https://github.com/lukso-network/lsp-smart-contracts/issues/810))
- Change Operator event names in LSP7 and LSP8 ([#809](https://github.com/lukso-network/lsp-smart-contracts/issues/809))
- add set/getTokenIdData functions in LSP8 ([#808](https://github.com/lukso-network/lsp-smart-contracts/issues/808))
- set `LSP4TokenType` on deployment of LSP7/8 Digital Assets ([#806](https://github.com/lukso-network/lsp-smart-contracts/issues/806))

### Features

- Add `batchCalls(...)` to LSP7 & LSP8 ([#810](https://github.com/lukso-network/lsp-smart-contracts/issues/810)) ([be46796](https://github.com/lukso-network/lsp-smart-contracts/commit/be467960a9d82c0932f6fa18d2eea6cf9b210710))
- add set/getTokenIdData functions in LSP8 ([#808](https://github.com/lukso-network/lsp-smart-contracts/issues/808)) ([642da9d](https://github.com/lukso-network/lsp-smart-contracts/commit/642da9d0c08601eb924b438e8be376f2297f03f1))
- set `LSP4TokenType` on deployment of LSP7/8 Digital Assets ([#806](https://github.com/lukso-network/lsp-smart-contracts/issues/806)) ([9ee6558](https://github.com/lukso-network/lsp-smart-contracts/commit/9ee6558d5865608f7e89869ebc43425cc3088875))
- extract verification metadata ([#802](https://github.com/lukso-network/lsp-smart-contracts/issues/802)) ([15cc284](https://github.com/lukso-network/lsp-smart-contracts/commit/15cc284c9f4c6a4ac4ff3df1c421b81ef7675936))

### Code Refactoring

- Change Operator event names in LSP7 and LSP8 ([#809](https://github.com/lukso-network/lsp-smart-contracts/issues/809)) ([07c56c1](https://github.com/lukso-network/lsp-smart-contracts/commit/07c56c13f0d2aff3be465d292807b7ab0e6912ca))
- Emit full DataChanged Event in LSP0 and LSP7, LSP8 ([#814](https://github.com/lukso-network/lsp-smart-contracts/issues/814)) ([6a5ea06](https://github.com/lukso-network/lsp-smart-contracts/commit/6a5ea06c7446e456fbe63b819b0f7c9c6b4c9e1a))

## [0.12.1](https://github.com/lukso-network/lsp-smart-contracts/compare/v0.12.0...v0.12.1) (2023-11-07)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion contracts/Version.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ abstract contract Version {
// DO NOT CHANGE
// Comments block below is used by release-please to automatically update the version in this file.
// x-release-please-start-version
string public constant VERSION = "0.12.1";
string public constant VERSION = "0.12.0";

// x-release-please-end
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lukso/lsp-smart-contracts",
"version": "0.12.1",
"version": "0.12.0",
"description": "The reference implementation for universal profiles smart contracts",
"directories": {
"test": "test"
Expand Down
Loading