diff --git a/.github/workflows/self-action.yml b/.github/workflows/self-action.yml index a2ad332..6046a0f 100644 --- a/.github/workflows/self-action.yml +++ b/.github/workflows/self-action.yml @@ -15,5 +15,5 @@ jobs: - uses: actions/checkout@v4 - name: "Run Action" - uses: 42ByteLabs/patch-release-me@0.5.5 + uses: 42ByteLabs/patch-release-me@0.6.0 diff --git a/.release.yml b/.release.yml index bc81c76..5465d58 100644 --- a/.release.yml +++ b/.release.yml @@ -1,5 +1,5 @@ name: "patch-release-me" -version: "0.5.5" +version: "0.6.0" repository: "42ByteLabs/patch-release-me" ecosystems: diff --git a/Cargo.lock b/Cargo.lock index 9c8d991..c30a00e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -471,7 +471,7 @@ dependencies = [ [[package]] name = "patch-release-me" -version = "0.5.5" +version = "0.6.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 362e2cb..d6056b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "patch-release-me" -version = "0.5.5" +version = "0.6.0" license = "MIT" description = "A tool to automate patching of your projects before you release them" diff --git a/README.md b/README.md index 5209610..afb6c82 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.5.5 + uses: 42ByteLabs/patch-release-me@0.6.0 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.5.5 +docker pull ghcr.io/42bytelabs/patch-release-me:0.6.0 ``` **Run Image:*** ```bash -docker run -it --rm -v $PWD:/app ghcr.io/42bytelabs/patch-release-me:0.5.5 patch-release-me --help +docker run -it --rm -v $PWD:/app ghcr.io/42bytelabs/patch-release-me:0.6.0 patch-release-me --help ``` ### Manual Install diff --git a/actions/Dockerfile b/actions/Dockerfile index 8c79c55..f08bda3 100644 --- a/actions/Dockerfile +++ b/actions/Dockerfile @@ -1,3 +1,3 @@ -FROM ghcr.io/42bytelabs/patch-release-me:0.5.5 +FROM ghcr.io/42bytelabs/patch-release-me:0.6.0 ENTRYPOINT ["patch-release-me"]