Skip to content

Commit

Permalink
Merge pull request #95 from ember-nexus/github-issue/88
Browse files Browse the repository at this point in the history
Removed trailing `v` from version number, fixes #88.
  • Loading branch information
Syndesi authored Oct 6, 2024
2 parents ebbc6d6 + 5df67b8 commit 4db947a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,21 @@ jobs:
- name: Bump release version
if: startsWith(github.event.inputs.release-type, 'pre') != true
run: |
echo "NEW_VERSION=$(npm --no-git-tag-version version $RELEASE_TYPE)" >> $GITHUB_ENV
echo "NEW_VERSION=$(npm --no-git-tag-version --tag-version-prefix= version $RELEASE_TYPE)" >> $GITHUB_ENV
echo "RELEASE_TAG=latest" >> $GITHUB_ENV
env:
RELEASE_TYPE: ${{ github.event.inputs.release-type }}

- name: Bump pre-release version
if: startsWith(github.event.inputs.release-type, 'pre')
run: |
echo "NEW_VERSION=$(npm --no-git-tag-version --preid=beta version $RELEASE_TYPE
echo "NEW_VERSION=$(npm --no-git-tag-version --tag-version-prefix= --preid=beta version $RELEASE_TYPE
echo "RELEASE_TAG=beta" >> $GITHUB_ENV
env:
RELEASE_TYPE: ${{ github.event.inputs.release-type }}

- name: Update changelog
uses: superfaceai/release-changelog-action@v2
uses: superfaceai/release-changelog-action@v3
with:
path-to-changelog: CHANGELOG.md
version: ${{ env.NEW_VERSION }}
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- id: get-changelog
name: Get version changelog
uses: superfaceai/release-changelog-action@v2
uses: superfaceai/release-changelog-action@v3
with:
path-to-changelog: CHANGELOG.md
version: ${{ env.NEW_VERSION }}
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Print warning if trailing slashes in API host configuration are found, and automatically removes them, closes #92.
### Fixed
- Fixed deprecated ts-jest configuration under globals keyword, "Define `ts-jest` config under `globals` is deprecated.".
- Removed trailing `v` from version number, fixes #88.

## 0.0.62 - 2024-10-01

Expand Down

0 comments on commit 4db947a

Please sign in to comment.