Skip to content

Commit

Permalink
📦 simplism v0.1.0 🐋 [whale]
Browse files Browse the repository at this point in the history
  • Loading branch information
k33g committed Jan 9, 2024
1 parent 0576f13 commit 08ff0c9
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .release.env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TAG="v0.1.1"
TAG="v0.1.0"
MESSAGE="simplism ${TAG} 🐋 [whale]"
IMAGE_TAG="0.1.1"
IMAGE_TAG="0.1.0"
IMAGE_BASE_NAME="simplism"
APPLICATION_NAME="simplism"
GITPOD_IMAGE_BASE_NAME="gitpod-simplism-playground"
Expand Down
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Cobalt2",
"editor.fontSize": 16,
"terminal.integrated.fontSize": 16,
"editor.fontSize": 15,
"terminal.integrated.fontSize": 14,
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.detectIndentation": true,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

```bash
SIMPLISM_DISTRO="Linux_arm64" # 👀 https://github.com/bots-garden/simplism/releases
VERSION="0.1.1"
VERSION="0.1.0"
wget https://github.com/bots-garden/simplism/releases/download/v${VERSION}/simplism_${SIMPLISM_DISTRO}.tar.gz -O simplism.tar.gz
tar -xf simplism.tar.gz -C /usr/bin
rm simplism.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion cmds/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
simplism v0.1.1 🐋 [whale]
simplism v0.1.0 🐋 [whale]
2 changes: 1 addition & 1 deletion generators/docker.image.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
k33g/simplism:0.1.1
k33g/simplism:0.1.0
2 changes: 1 addition & 1 deletion generators/simplism.version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.1.1
v0.1.0
2 changes: 1 addition & 1 deletion k8s/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBE_NAMESPACE="simplism-faas"
IMAGE_NAME="k33g/simplism"
IMAGE_TAG="0.1.1"
IMAGE_TAG="0.1.0"
DNS="1f833ec8-f509-46f5-98ad-9e57465fde32.k8s.civo.com"
2 changes: 1 addition & 1 deletion k8s/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
```bash
KUBE_NAMESPACE="simplism-faas"
IMAGE_NAME="k33g/simplism"
IMAGE_TAG="0.1.1"
IMAGE_TAG="0.1.0"
DNS="1f833ec8-f509-46f5-98ad-9e57465fde32.k8s.civo.com"
```

Expand Down
5 changes: 5 additions & 0 deletions remove-tag.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
set -o allexport; source .github.env; set +o allexport
set -o allexport; source .release.env; set +o allexport

git tag -d ${TAG}

0 comments on commit 08ff0c9

Please sign in to comment.