From 57700d94c9b2628bb8cead4782c471d5be397a8d Mon Sep 17 00:00:00 2001 From: Pascal Marco Caversaccio Date: Wed, 14 Feb 2024 15:47:36 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20=20Update=20Version=20to?= =?UTF-8?q?=20`0.0.5-rc.3`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Marco Caversaccio --- lib/forge-std | 2 +- lib/openzeppelin-contracts | 2 +- package.json | 2 +- pyproject.toml | 2 +- src/snekmate/auth/Ownable.vy | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/forge-std b/lib/forge-std index 77876f8a..3725a22a 160000 --- a/lib/forge-std +++ b/lib/forge-std @@ -1 +1 @@ -Subproject commit 77876f8a5b44b770a935621bb331660c90ac928e +Subproject commit 3725a22ae52065de9966beaf32de69aee46fb530 diff --git a/lib/openzeppelin-contracts b/lib/openzeppelin-contracts index ae1bafcb..4e7e6e54 160000 --- a/lib/openzeppelin-contracts +++ b/lib/openzeppelin-contracts @@ -1 +1 @@ -Subproject commit ae1bafcb48fe220257d76bfd93a237db3ebaf3df +Subproject commit 4e7e6e54daedf091d91f2f2df024cbb8f253e2ef diff --git a/package.json b/package.json index d913d129..998897e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "snekmate", - "version": "0.0.5-rc.2", + "version": "0.0.5-rc.3", "description": "State-of-the-art, highly opinionated, hyper-optimised, and secure 🐍Vyper smart contract building blocks.", "author": "Pascal Marco Caversaccio ", "license": "AGPL-3.0-only", diff --git a/pyproject.toml b/pyproject.toml index d5cb0619..ec1f01c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "snekmate" -version = "0.0.5rc2" +version = "0.0.5rc3" description = "State-of-the-art, highly opinionated, hyper-optimised, and secure 🐍Vyper smart contract building blocks." readme = {file = "README.md", content-type = "text/markdown"} requires-python = ">=3.10" diff --git a/src/snekmate/auth/Ownable.vy b/src/snekmate/auth/Ownable.vy index 256b2cb3..a8ddff20 100644 --- a/src/snekmate/auth/Ownable.vy +++ b/src/snekmate/auth/Ownable.vy @@ -10,7 +10,7 @@ By default, the owner account will be the one that deploys the contract. This can later be changed with `transfer_ownership`. An exemplary integration can be found in the ERC-20 implementation here: - https://github.com/pcaversaccio/snekmate/blob/main/src/tokens/ERC20.vy. + https://github.com/pcaversaccio/snekmate/blob/main/src/snekmate/tokens/ERC20.vy. The implementation is inspired by OpenZeppelin's implementation here: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol. """