Skip to content

Commit 932d033

Browse files
updating version numbers
1 parent 0e97e99 commit 932d033

8 files changed

Lines changed: 17 additions & 17 deletions

File tree

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ builds:
1818
- amd64
1919
- arm64
2020
ldflags:
21-
- -s -w -X main.version=v2.0.0
21+
- -s -w -X main.version=v2.0.1
2222
- id: poke-cache
2323
builder: prebuilt
2424
goos:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN go mod download
88

99
COPY . .
1010

11-
RUN go build -ldflags "-X main.version=v2.0.0" -o poke-cli .
11+
RUN go build -ldflags "-X main.version=v2.0.1" -o poke-cli .
1212

1313
# build 2
1414
FROM rust:1-alpine AS rust-build

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<h4></h4>
44
<img src="https://img.shields.io/github/v/release/digitalghost-dev/poke-cli?style=flat-square&logo=git&logoColor=FFCC00&label=Release%20Version&labelColor=EEE&color=FFCC00" alt="version-label">
55
<img src="https://img.shields.io/github/downloads/digitalghost-dev/poke-cli/total?style=flat-square&logo=github&logoColor=FFCC00&label=Downloads&labelColor=EEE&color=FFCC00" alt="downloads">
6-
<img src="https://img.shields.io/docker/image-size/digitalghostdev/poke-cli/v2.0.0?arch=arm64&style=flat-square&logo=docker&logoColor=FFCC00&labelColor=EEE&color=FFCC00" alt="docker-image-size">
6+
<img src="https://img.shields.io/docker/image-size/digitalghostdev/poke-cli/v2.0.1?arch=arm64&style=flat-square&logo=docker&logoColor=FFCC00&labelColor=EEE&color=FFCC00" alt="docker-image-size">
77
<img src="https://img.shields.io/docker/pulls/digitalghostdev/poke-cli?style=flat-square&logo=docker&logoColor=FFCC00&labelColor=EEE&color=FFCC00" alt="docker-pulls">
88
<img src="https://img.shields.io/github/actions/workflow/status/digitalghost-dev/poke-cli/release.yml?style=flat-square&logo=github&logoColor=FFCC00&label=Release&labelColor=EEE&color=FFCC00" alt="release-status-badge">
99
</div>
@@ -117,11 +117,11 @@ Cloudsmith is a fully cloud-based service that lets you easily create, store, an
117117
3. Choose how to interact with the container:
118118
* Run a single command and exit:
119119
```bash
120-
docker run --rm -it digitalghostdev/poke-cli:v2.0.0 <command> [subcommand] [flag]
120+
docker run --rm -it digitalghostdev/poke-cli:v2.0.1 <command> [subcommand] [flag]
121121
```
122122
* Enter the container and use its shell:
123123
```bash
124-
docker run --rm -it --name poke-cli --entrypoint /bin/sh digitalghostdev/poke-cli:v2.0.0 -c "cd /app && exec sh"
124+
docker run --rm -it --name poke-cli --entrypoint /bin/sh digitalghostdev/poke-cli:v2.0.1 -c "cd /app && exec sh"
125125
# placed into the /app directory, run the program with './poke-cli'
126126
# example: ./poke-cli ability swift-swim
127127
```
@@ -130,13 +130,13 @@ Cloudsmith is a fully cloud-based service that lets you easily create, store, an
130130
> The `card` command renders TCG card images using your terminal's graphics protocol. When running inside Docker, pass your terminal's environment variables so image rendering works correctly:
131131
> ```bash
132132
> # Kitty
133-
> docker run --rm -it -e TERM -e KITTY_WINDOW_ID digitalghostdev/poke-cli:v2.0.0 card
133+
> docker run --rm -it -e TERM -e KITTY_WINDOW_ID digitalghostdev/poke-cli:v2.0.1 card
134134
>
135135
> # WezTerm, iTerm2, Ghostty, Konsole, Rio, Tabby
136-
> docker run --rm -it -e TERM -e TERM_PROGRAM digitalghostdev/poke-cli:v2.0.0 card
136+
> docker run --rm -it -e TERM -e TERM_PROGRAM digitalghostdev/poke-cli:v2.0.1 card
137137
>
138138
> # Windows Terminal (Sixel)
139-
> docker run --rm -it -e WT_SESSION digitalghostdev/poke-cli:v2.0.0 card
139+
> docker run --rm -it -e WT_SESSION digitalghostdev/poke-cli:v2.0.1 card
140140
> ```
141141
> If your terminal is not listed above, image rendering is not supported inside Docker.
142142

data_platform/pipelines/poke_cli_dbt/dbt_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'poke_cli_dbt'
2-
version: '2.0.0'
2+
version: '2.0.1'
33

44
profile: 'poke_cli_dbt'
55

data_platform/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "data-platform"
3-
version = "v2.0.0"
3+
version = "v2.0.1"
44
description = "File directory to store all data related processes for the Pokémon TCG."
55
readme = "README.md"
66
requires-python = ">=3.12"

docs/installation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ Cloudsmith is a fully cloud-based service that lets you easily create, store, an
6262
3. Choose how to interact with the container:
6363
* Run a single command and exit:
6464
```console
65-
docker run --rm -it digitalghostdev/poke-cli:v2.0.0 <command> [subcommand] [flag]
65+
docker run --rm -it digitalghostdev/poke-cli:v2.0.1 <command> [subcommand] [flag]
6666
```
6767
* Enter the container and use its shell:
6868
```console
69-
docker run --rm -it --name poke-cli --entrypoint /bin/sh digitalghostdev/poke-cli:v2.0.0 -c "cd /app && exec sh"
69+
docker run --rm -it --name poke-cli --entrypoint /bin/sh digitalghostdev/poke-cli:v2.0.1 -c "cd /app && exec sh"
7070
# placed into the /app directory, run the program with './poke-cli'
7171
# example: ./poke-cli ability swift-swim
7272
```
@@ -76,13 +76,13 @@ Cloudsmith is a fully cloud-based service that lets you easily create, store, an
7676
The `card` command renders TCG card images using your terminal's graphics protocol. When running inside Docker, pass your terminal's environment variables so image rendering works correctly:
7777
```console
7878
# Kitty
79-
docker run --rm -it -e TERM -e KITTY_WINDOW_ID digitalghostdev/poke-cli:v2.0.0 card
79+
docker run --rm -it -e TERM -e KITTY_WINDOW_ID digitalghostdev/poke-cli:v2.0.1 card
8080

8181
# WezTerm, iTerm2, Ghostty, Konsole, Rio, Tabby
82-
docker run --rm -it -e TERM -e TERM_PROGRAM digitalghostdev/poke-cli:v2.0.0 card
82+
docker run --rm -it -e TERM -e TERM_PROGRAM digitalghostdev/poke-cli:v2.0.1 card
8383

8484
# Windows Terminal (Sixel)
85-
docker run --rm -it -e WT_SESSION digitalghostdev/poke-cli:v2.0.0 card
85+
docker run --rm -it -e WT_SESSION digitalghostdev/poke-cli:v2.0.1 card
8686
```
8787
If your terminal is not listed above, image rendering is not supported inside Docker.
8888

nfpm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "poke-cli"
22
arch: "arm64"
33
platform: "linux"
4-
version: "v2.0.0"
4+
version: "v2.0.1"
55
section: "default"
66
version_schema: semver
77
maintainer: "Christian S"

web/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "web"
3-
version = "v2.0.0"
3+
version = "v2.0.1"
44
description = "Streamlit dashboard for browsing and visualizing Pokémon TCG tournament standings and results."
55
readme = "README.md"
66
requires-python = ">=3.12"

0 commit comments

Comments
 (0)