Skip to content

Releases: fwilhe2/bump-version

Release 0.1.8

24 Sep 15:52
fb1bc8b
Compare
Choose a tag to compare
Fix release workflow

- use gh cli because the action is deprecated
- only commit changelog if changes exist

Release 0.1.7

24 Sep 15:10
Compare
Choose a tag to compare
Update nodejs to 20

Release 0.1.6

07 Jan 08:58
a92861a
Compare
Choose a tag to compare

Update dependencies to include new github 'write-output' function

Release 0.1.5

25 Nov 22:46
71cf5b1
Compare
Choose a tag to compare
Merge pull request #381 from fwilhe2/dependabot/npm_and_yarn/eslint-p…

…lugin-jest-27.1.6

Bump eslint-plugin-jest from 27.1.5 to 27.1.6

Release 0.1.4

17 Jun 19:28
0efd30a
Compare
Choose a tag to compare

Update dependencies

Release 0.1.3

02 May 21:26
477598e
Compare
Choose a tag to compare

Changes

Configure version component via workflow_dispatch

If you want to select a version number component to update when triggering a release via workflow_dispatch, you might want to use inputs as in this example.

on:
  push:
  workflow_dispatch:
    inputs:
      component:
        description: 'Version component to increment'
        required: true
        default: 'patch'
jobs:
  build:
    name: Create Release
    runs-on: ubuntu-latest
    steps:
    - name: Checkout code
      uses: actions/checkout@v2
    - name: Get Version Number
      uses: fwilhe2/bump-version@main
      id: bump
      with:
        component: ${{ github.event.inputs.component }}

Release 0.1.2

16 Jan 21:02
e5ecab4
Compare
Choose a tag to compare

Publish to GitHub Marketplace

0.1.1

16 Jan 20:59
Compare
Choose a tag to compare
Rename action for publishing

Release 0.1.0

16 Jan 20:54
Compare
Choose a tag to compare

New Features

You can select the version component to update.
By default, the minor version is updated.
Valid values are major, minor, patch.

Example to update the patch version:

    - uses: fwilhe2/bump-version@main
      id: bump
      with:
        component: patch
    - run: echo ${{ steps.bump.outputs.newVersion }}

0.0.1

28 Dec 07:50
Compare
Choose a tag to compare

Initial release