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

feat(hardhat-plugin,contracts): bump contracts versions #13469

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/contracts/CHANGELOG.md
@@ -1,5 +1,9 @@
# CHANGELOG

## 0.0.23

Add Unlock v13, PublicLock v14 and utils contracts

## 0.0.21

- release fix post-attack on Fri Apr 21st 2023 #11690
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/package.json
@@ -1,6 +1,6 @@
{
"name": "@unlock-protocol/contracts",
"version": "0.0.21",
"version": "0.0.23",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist docs",
Expand Down
6 changes: 6 additions & 0 deletions packages/hardhat-plugin/CHANGELOG.md
@@ -1,5 +1,11 @@
# CHANGELOG

### 0.1.4

- Update default versions to Unlock 13 and PublicLock 14

### 0.1.3

### 0.1.2

- Changing the lock deployed version to the latest
Expand Down
2 changes: 1 addition & 1 deletion packages/hardhat-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "@unlock-protocol/hardhat-plugin",
"version": "0.1.2",
"version": "0.1.4",
"description": "Hardhat Plugin for Unlock Protocol",
"author": "Unlock Protocol",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/hardhat-plugin/src/constants.ts
@@ -1,5 +1,5 @@
export const UNLOCK_LATEST_VERSION = 11
export const PUBLIC_LOCK_LATEST_VERSION = 13
export const UNLOCK_LATEST_VERSION = 13
export const PUBLIC_LOCK_LATEST_VERSION = 14
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if our "contracts" package should just have some latest fields?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes it will be the easiest and safest way. We need an alias in our exports, there is an existing opened issue on these I referenced here


// task names
export const TASK_CREATE_LOCK = 'unlock:create-lock'