Skip to content

Commit

Permalink
Prepare v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Caspar Oostendorp committed Feb 23, 2024
1 parent ccd8b65 commit e8a3c9f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
11 changes: 6 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN yarn build --mode production



FROM ghcr.io/pixelaw/keiko:0.1.6 AS runtime
FROM ghcr.io/pixelaw/keiko:0.1.7 AS runtime

ENV PUBLIC_TORII=http://localhost:8080
ENV PUBLIC_NODE_URL=http://localhost:5050
Expand All @@ -41,10 +41,11 @@ COPY ./contracts /tmp/contracts
RUN sozo build --manifest-path Scarb.toml && \
bash scripts/create_genesis.sh

RUN mkdir /keiko/config && mkdir /keiko/storage && mkdir /keiko/log && \
mv genesis.json /keiko/config/genesis.json && \
mv target/dev/manifest.json /keiko/config/manifest.json && \
mv torii.sqlite /keiko/storage/torii.sqlite && \
RUN mkdir /keiko/config && mkdir -p /keiko/storage/manifests && mkdir /keiko/log && \
cp genesis.json /keiko/config/genesis.json && \
cp target/dev/manifest.json /keiko/config/manifest.json && \
cp target/dev/manifest.json /keiko/storage/manifests/core.json && \
cp torii.sqlite /keiko/storage/torii.sqlite && \
touch /keiko/log/katana.log.json && touch /keiko/log/torii.log

RUN rm -rf /tmp/contracts
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
REPO = pixelaw/core
CORE_VERSION = 0.1.2
CORE_VERSION = 0.1.3
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.2
0.1.3
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.2"
version = "0.1.3"
homepage = "https://github.com/pixelaw/core"

[cairo]
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.2"
appVersion: "0.1.3"
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.2"
appVersion: "0.1.3"

0 comments on commit e8a3c9f

Please sign in to comment.