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

Update yielder mechanism #221

Merged
merged 11 commits into from
Jun 29, 2023
Merged
Show file tree
Hide file tree
Changes from 8 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 .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI Tests
on: [push, pull_request, pull_request_target]

env:
PROTOSTAR_VERSION: 0.12.0
PROTOSTAR_VERSION: 0.13.0

jobs:
protostar-tests:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
__pycache__
env
.env
test.*

# starknet
node.json
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ install:
protostar install

test:
protostar test-cairo0 tests/
protostar test-cairo0 tests/units
cloudvenger marked this conversation as resolved.
Show resolved Hide resolved

declare:
ifdef NONCE
Expand Down
2 changes: 1 addition & 1 deletion protostar.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
protostar-version = "0.12.0"
protostar-version = "0.13.0"
lib-path = "lib"
cairo-path = [
"./lib/cairopen_contracts/src",
Expand Down
Loading