diff --git a/.github/workflows/self-action.yml b/.github/workflows/self-action.yml index c01ce53..e9f0e5a 100644 --- a/.github/workflows/self-action.yml +++ b/.github/workflows/self-action.yml @@ -15,5 +15,5 @@ jobs: - uses: actions/checkout@v5 - name: "Run Action" - uses: 42ByteLabs/patch-release-me@0.6.2 + uses: 42ByteLabs/patch-release-me@0.6.3 diff --git a/.release.yml b/.release.yml index 028c096..42f84cb 100644 --- a/.release.yml +++ b/.release.yml @@ -1,5 +1,5 @@ name: "patch-release-me" -version: "0.6.2" +version: "0.6.3" repository: "42ByteLabs/patch-release-me" ecosystems: diff --git a/Cargo.toml b/Cargo.toml index cad22c6..b8fd201 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "patch-release-me" -version = "0.6.2" +version = "0.6.3" license = "MIT" description = "A tool to automate patching of your projects before you release them" diff --git a/README.md b/README.md index 9e6f256..081f21c 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ cargo install patch-release-me ```yaml - name: "Patch Release Me" - uses: 42ByteLabs/patch-release-me@0.6.2 + uses: 42ByteLabs/patch-release-me@0.6.3 with: # Bump (patch) mode: bump @@ -44,13 +44,13 @@ cargo install patch-release-me **Pull Container from GitHub:** ```bash -docker pull ghcr.io/42bytelabs/patch-release-me:0.6.2 +docker pull ghcr.io/42bytelabs/patch-release-me:0.6.3 ``` **Run Image:*** ```bash -docker run -it --rm -v $PWD:/app ghcr.io/42bytelabs/patch-release-me:0.6.2 patch-release-me --help +docker run -it --rm -v $PWD:/app ghcr.io/42bytelabs/patch-release-me:0.6.3 patch-release-me --help ``` ### Manual Install diff --git a/actions/Dockerfile b/actions/Dockerfile index 6598b0f..92e2089 100644 --- a/actions/Dockerfile +++ b/actions/Dockerfile @@ -1,3 +1,3 @@ -FROM ghcr.io/42bytelabs/patch-release-me:0.6.2 +FROM ghcr.io/42bytelabs/patch-release-me:0.6.3 ENTRYPOINT ["patch-release-me"]