From d4b34e8c4afd0f04b8000aa3c744f93223265c08 Mon Sep 17 00:00:00 2001 From: GeekMasher Date: Thu, 27 Feb 2025 01:23:06 +0000 Subject: [PATCH] feat(version): v0.5.1 --- .github/workflows/self-action.yml | 2 +- .release.yml | 2 +- Cargo.toml | 2 +- README.md | 6 +++--- actions/Dockerfile | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/self-action.yml b/.github/workflows/self-action.yml index c493430..64ff367 100644 --- a/.github/workflows/self-action.yml +++ b/.github/workflows/self-action.yml @@ -15,4 +15,4 @@ jobs: - uses: actions/checkout@v4 - name: "Run Action" - uses: 42ByteLabs/patch-release-me@0.4.1 + uses: 42ByteLabs/patch-release-me@0.5.1 diff --git a/.release.yml b/.release.yml index 8e65e5d..1413e76 100644 --- a/.release.yml +++ b/.release.yml @@ -1,5 +1,5 @@ name: "patch-release-me" -version: "0.5.0" +version: "0.5.1" repository: "42ByteLabs/patch-release-me" ecosystems: diff --git a/Cargo.toml b/Cargo.toml index 02cde74..aa2519b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "patch-release-me" -version = "0.5.0" +version = "0.5.1" license = "MIT" description = "A tool to automate patching of your projects before you release them" diff --git a/README.md b/README.md index c581834..6098c85 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.4.1 + uses: 42ByteLabs/patch-release-me@0.5.1 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.4.1 +docker pull ghcr.io/42bytelabs/patch-release-me:0.5.1 ``` **Run Image:*** ```bash -docker run -it --rm -v $PWD:/app ghcr.io/42bytelabs/patch-release-me:0.4.1 patch-release-me --help +docker run -it --rm -v $PWD:/app ghcr.io/42bytelabs/patch-release-me:0.5.1 patch-release-me --help ``` ### Manual Install diff --git a/actions/Dockerfile b/actions/Dockerfile index 23cfb51..2e52edf 100644 --- a/actions/Dockerfile +++ b/actions/Dockerfile @@ -1,3 +1,3 @@ -FROM ghcr.io/42bytelabs/patch-release-me:0.4.1 +FROM ghcr.io/42bytelabs/patch-release-me:0.5.1 ENTRYPOINT ["patch-release-me"]