Skip to content

Commit

Permalink
Prepare v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Caspar Oostendorp committed Feb 26, 2024
1 parent 910cc8a commit ca5e802
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include .account
export

REPO = ghcr.io/pixelaw/core
CORE_VERSION = 0.1.5
CORE_VERSION = 0.1.6
KEIKO_VERSION = v0.1.5


Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.5
0.1.6
2 changes: 1 addition & 1 deletion contracts/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
cairo-version = "2.4.0"
name = "pixelaw"
version = "0.1.5"
version = "0.1.6"
homepage = "https://github.com/pixelaw/core"

[cairo]
Expand Down
8 changes: 4 additions & 4 deletions contracts/scripts/create_genesis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -uo pipefail
# - starkli
# - jq
###########################################################

echo "1"
export TARGET=${1:-"target/dev"}
export STARKNET_RPC="http://localhost:5050/"
#export DOJO_PRIVATE_KEY=$(cat /run/secrets/private_key)
Expand Down Expand Up @@ -142,9 +142,9 @@ jq --arg ch "$class_hash" --slurpfile cc "${TARGET}/dojo::world::world.json" '.c
read -r class_hash <<<$(jq -r '.base.class_hash' $MANIFEST)
jq --arg ch "$class_hash" --slurpfile cc "${TARGET}/dojo::base::base.json" '.classes += [{"class_hash": $ch, "class": $cc[0]}]' $GENESIS_OUT > $GENESIS_OUT.tmp && mv $GENESIS_OUT.tmp $GENESIS_OUT

## Executor
read -r class_hash <<<$(jq -r '.executor.class_hash' $MANIFEST)
jq --arg ch "$class_hash" --slurpfile cc "${TARGET}/dojo::executor::executor.json" '.classes += [{"class_hash": $ch, "class": $cc[0]}]' $GENESIS_OUT > $GENESIS_OUT.tmp && mv $GENESIS_OUT.tmp $GENESIS_OUT
## resource_metadata
read -r class_hash <<<$(jq -r '.resource_metadata.class_hash' $MANIFEST)
jq --arg ch "$class_hash" --slurpfile cc "${TARGET}/dojo::resource_metadata::resource_metadata.json" '.classes += [{"class_hash": $ch, "class": $cc[0]}]' $GENESIS_OUT > $GENESIS_OUT.tmp && mv $GENESIS_OUT.tmp $GENESIS_OUT


## Classes of Contracts
Expand Down
2 changes: 1 addition & 1 deletion deployment/demo/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: "0.0.45"
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.1.5"
appVersion: "0.1.6"
2 changes: 1 addition & 1 deletion deployment/test/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: "0.0.45"
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.1.5"
appVersion: "0.1.6"

0 comments on commit ca5e802

Please sign in to comment.