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 22, 2024
1 parent b5c28b4 commit f3e051f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@ RUN source ~/.bashrc
ENV PATH="/root/.dojo/bin:${PATH}"
RUN dojoup -v $DOJO_VERSION

# Install starkli
SHELL ["/bin/bash", "-c"]
RUN curl https://get.starkli.sh | bash
RUN source ~/.bashrc
ENV PATH="/root/.starkli/bin:${PATH}"
RUN starkliup

# TODO copy the dojo_examples, build them

WORKDIR /keiko
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 chart/keiko/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: 0.1.0
# 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"
1 change: 1 addition & 0 deletions scripts/prepare_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ prev_version=$(cat VERSION)
next_version=$1

find . -type f -name "Chart.yaml" -exec sed -i'' -e "s/appVersion: \"$prev_version\"/appVersion: \"$next_version\"/g" {} \;
find . -type f -name "*.toml" -exec sed -i'' -e "s/version = \"$prev_version\"/version = \"$next_version\"/g" {} \;

echo $1 > VERSION

Expand Down

0 comments on commit f3e051f

Please sign in to comment.