From 3924f1fa50d55a9bc972a59d1cfcf566920fb612 Mon Sep 17 00:00:00 2001 From: GeekMasher Date: Wed, 8 Jan 2025 11:16:15 +0000 Subject: [PATCH] feat(version): v0.4.1 --- .github/workflows/self-action.yml | 2 +- Cargo.toml | 2 +- README.md | 6 +++--- actions/Dockerfile | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/self-action.yml b/.github/workflows/self-action.yml index eb70ae0..c493430 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.0 + uses: 42ByteLabs/patch-release-me@0.4.1 diff --git a/Cargo.toml b/Cargo.toml index c3c2e5f..2083922 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "patch-release-me" -version = "0.4.0" +version = "0.4.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 dfa58f6..c581834 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.0 + uses: 42ByteLabs/patch-release-me@0.4.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.0 +docker pull ghcr.io/42bytelabs/patch-release-me:0.4.1 ``` **Run Image:*** ```bash -docker run -it --rm -v $PWD:/app ghcr.io/42bytelabs/patch-release-me:0.4.0 patch-release-me --help +docker run -it --rm -v $PWD:/app ghcr.io/42bytelabs/patch-release-me:0.4.1 patch-release-me --help ``` ### Manual Install diff --git a/actions/Dockerfile b/actions/Dockerfile index 9c47166..23cfb51 100644 --- a/actions/Dockerfile +++ b/actions/Dockerfile @@ -1,3 +1,3 @@ -FROM ghcr.io/42bytelabs/patch-release-me:0.4.0 +FROM ghcr.io/42bytelabs/patch-release-me:0.4.1 ENTRYPOINT ["patch-release-me"]