diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ffc4353..fd22fd3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -41,6 +41,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: fischerscode/tagger@v0.1 + - uses: fischerscode/tagger@v0.2 with: prefix: v diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f900cc..1569f78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.2.0 + +- Update dependencies +- Support macOS & Windows + ## v0.1.0 - Add to marketplace diff --git a/README.md b/README.md index a9e9494..2fe41e2 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ [![](https://img.shields.io/github/v/release/fischerscode/tagger)](https://github.com/fischerscode/tagger/releases/latest) [![](https://img.shields.io/github/license/fischerscode/tagger)](https://github.com/fischerscode/tagger/blob/master/LICENSE) -You can use Tagger either as a [command line tool](#tagger-as-a-command-line-tool) or an [GitHub Action](#tagger-v01-action) +You can use Tagger either as a [command line tool](#tagger-as-a-command-line-tool) or an [GitHub Action](#tagger-v02-action) -# Tagger V0.1 Action +# Tagger V0.2 Action This action automatically moves semantic tags. When providing the tag '1.2.3', '1' and '1.2' will be moved to the position of '1.2.3'. This action is meant to be run when ever a release has been created. @@ -24,7 +24,7 @@ jobs: steps: # You have to check out your repo first. - uses: actions/checkout@v2 - - uses: fischerscode/tagger@v0.1 + - uses: fischerscode/tagger@v0.2 with: # The prefix of the semantic tags. # Default: '' diff --git a/action.yaml b/action.yaml index e5b5429..7eaeaa0 100644 --- a/action.yaml +++ b/action.yaml @@ -40,13 +40,13 @@ runs: else suffix=mac fi - wget https://github.com/fischerscode/tagger/releases/download/v0.1.0/tagger.${suffix} -O ${{ steps.info.outputs.BIN }} + wget https://github.com/fischerscode/tagger/releases/download/v0.2.0/tagger.${suffix} -O ${{ steps.info.outputs.BIN }} chmod +x ${{ steps.info.outputs.BIN }} shell: sh - name: Download tagger (Windows) if: ${{ runner.os == 'Windows' }} run: | - Invoke-WebRequest -URI https://github.com/fischerscode/tagger/releases/download/v0.1.0/tagger.windows.exe -OutFile $Env:BIN + Invoke-WebRequest -URI https://github.com/fischerscode/tagger/releases/download/v0.2.0/tagger.windows.exe -OutFile $Env:BIN echo "Saved to $Env:BIN" shell: pwsh env: diff --git a/pubspec.lock b/pubspec.lock index f7a4ae1..bfd6ddb 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -5,64 +5,73 @@ packages: dependency: "direct main" description: name: args - url: "https://pub.dartlang.org" + sha256: "4cab82a83ffef80b262ddedf47a0a8e56ee6fbf7fe21e6e768b02792034dd440" + url: "https://pub.dev" source: hosted - version: "2.3.0" + version: "2.4.0" file: dependency: transitive description: name: file - url: "https://pub.dartlang.org" + sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d" + url: "https://pub.dev" source: hosted - version: "6.1.2" + version: "6.1.4" meta: dependency: transitive description: name: meta - url: "https://pub.dartlang.org" + sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3" + url: "https://pub.dev" source: hosted - version: "1.7.0" + version: "1.9.1" path: dependency: transitive description: name: path - url: "https://pub.dartlang.org" + sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" + url: "https://pub.dev" source: hosted - version: "1.8.0" + version: "1.8.3" pedantic: dependency: "direct dev" description: name: pedantic - url: "https://pub.dartlang.org" + sha256: "67fc27ed9639506c856c840ccce7594d0bdcd91bc8d53d6e52359449a1d50602" + url: "https://pub.dev" source: hosted version: "1.11.1" platform: dependency: transitive description: name: platform - url: "https://pub.dartlang.org" + sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76" + url: "https://pub.dev" source: hosted - version: "3.0.2" + version: "3.1.0" process: dependency: transitive description: name: process - url: "https://pub.dartlang.org" + sha256: "53fd8db9cec1d37b0574e12f07520d582019cb6c44abf5479a01505099a34a09" + url: "https://pub.dev" source: hosted - version: "4.2.3" + version: "4.2.4" shell: dependency: "direct main" description: name: shell - url: "https://pub.dartlang.org" + sha256: fd3b7b97e5e7f734138543d5815c6cb6cdd2a1645a0def8ac8e05577cddfbe03 + url: "https://pub.dev" source: hosted version: "2.0.0" version: dependency: "direct main" description: name: version - url: "https://pub.dartlang.org" + sha256: "3d4140128e6ea10d83da32fef2fa4003fccbf6852217bb854845802f04191f94" + url: "https://pub.dev" source: hosted - version: "2.0.0" + version: "3.0.2" sdks: - dart: ">=2.12.0 <3.0.0" + dart: ">=2.18.0 <3.0.0" diff --git a/pubspec.yaml b/pubspec.yaml index 2cfe79f..981279e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: tagger description: Automatically move your GitHub Action tags on release. -version: 0.1.0 +version: 0.2.0 repository: https://github.com/fischerscode/tagger environment: @@ -9,7 +9,7 @@ environment: dependencies: args: ^2.3.0 shell: ^2.0.0 - version: ^2.0.0 + version: ^3.0.2 dev_dependencies: pedantic: ^1.9.0