Skip to content

Commit

Permalink
🔖 Prepare 0.0.5 Release
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
  • Loading branch information
pcaversaccio committed Mar 6, 2024
1 parent 9f7eec7 commit eefb960
Show file tree
Hide file tree
Showing 10 changed files with 286 additions and 281 deletions.
522 changes: 261 additions & 261 deletions .gas-snapshot

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
[submodule "lib/murky"]
path = lib/murky
url = https://github.com/dmfxyz/murky.git
[submodule "lib/solady"]
path = lib/solady
url = https://github.com/vectorized/solady.git
[submodule "lib/solmate"]
path = lib/solmate
url = https://github.com/transmissions11/solmate.git
[submodule "lib/prb-test"]
path = lib/prb-test
url = https://github.com/paulrberg/prb-test.git
[submodule "lib/forge-std"]
path = lib/forge-std
url = https://github.com/foundry-rs/forge-std.git
[submodule "lib/create-util"]
path = lib/create-util
url = https://github.com/pcaversaccio/create-util.git
[submodule "lib/erc4626-tests"]
path = lib/erc4626-tests
url = https://github.com/a16z/erc4626-tests.git
[submodule "lib/solidity-bytes-utils"]
path = lib/solidity-bytes-utils
url = https://github.com/GNSPS/solidity-bytes-utils.git
[submodule "lib/openzeppelin-contracts"]
path = lib/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts.git
[submodule "lib/prb-test"]
path = lib/prb-test
url = https://github.com/paulrberg/prb-test.git
[submodule "lib/murky"]
path = lib/murky
url = https://github.com/dmfxyz/murky.git
[submodule "lib/erc4626-tests"]
path = lib/erc4626-tests
url = https://github.com/a16z/erc4626-tests.git
[submodule "lib/solady"]
path = lib/solady
url = https://github.com/vectorized/solady.git
[submodule "lib/solmate"]
path = lib/solmate
url = https://github.com/transmissions11/solmate.git
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ lib/openzeppelin-contracts
cache
out
dist
venv
1 change: 1 addition & 0 deletions .solhintignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ lib/openzeppelin-contracts
cache
out
dist
venv
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 🕓 Changelog

## [`0.0.5`](https://github.com/pcaversaccio/snekmate/releases/tag/v0.0.5) (Unreleased)
## [`0.0.5`](https://github.com/pcaversaccio/snekmate/releases/tag/v0.0.5) (07-03-2024)

### 💥 New Features

Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

**State-of-the-art**, **highly opinionated**, **hyper-optimised**, and **secure** 🐍Vyper smart contract building blocks.

> [!WARNING]
> This is **experimental software** and is provided on an "as is" and "as available" basis. We **do not give any warranties** and **will not be liable for any losses** incurred through any use of this code base.
## 📜 Contracts
Expand Down Expand Up @@ -60,6 +61,9 @@ src

## 🎛 Installation

> [!IMPORTANT]
> 🐍 snekmate uses a [ZeroVer](https://0ver.org)-based versioning scheme. This means 🐍 snekmate's major version will never exceed the first and most important number in computing: zero.
We offer three convenient ways to install the 🐍 snekmate contracts:

### 1️⃣ Foundry
Expand Down
1 change: 0 additions & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ src = 'src' # the source directo
test = 'test' # the test directory
out = 'out' # the output directory (for artifacts)
libs = ['lib'] # a list of library directories
remappings = [] # a list of remappings
cache = true # whether to cache builds or not
cache_path = 'cache' # where the cache is stored if enabled
force = false # whether to ignore the cache (clean build)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "snekmate",
"version": "0.0.5-rc.3",
"version": "0.0.5",
"description": "State-of-the-art, highly opinionated, hyper-optimised, and secure 🐍Vyper smart contract building blocks.",
"author": "Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>",
"license": "AGPL-3.0-only",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "snekmate"
version = "0.0.5rc3"
version = "0.0.5"
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"
Expand Down
2 changes: 1 addition & 1 deletion scripts/compile.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import subprocess, glob

for filename in glob.glob("**/*.vy", recursive=True):
for filename in glob.glob("src/**/*.vy", recursive=True):
result = subprocess.run(
["vyper", "-f", "userdoc,devdoc", filename], capture_output=True, text=True
)
Expand Down

0 comments on commit eefb960

Please sign in to comment.