Skip to content

Commit 4bebeee

Browse files
committed
Release v0.5.1
This release incorporates recent improvements to error handling and the build process. Key changes: - feat: Enhanced error handling in `src/index.ts` to gracefully manage unknown error types, improving robustness. - chore: Updated `package.json` to integrate linting and formatting into the `prepare` script. This ensures higher code quality and consistency before any build.
1 parent 0ff6cbe commit 4bebeee

3 files changed

Lines changed: 17 additions & 1 deletion

File tree

.github/workflows/tag-after-merge.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,17 @@ jobs:
6161
git tag v${{ env.version }}
6262
git push origin v${{ env.version }}
6363
64+
- name: Setup pnpm
65+
uses: pnpm/action-setup@v4
66+
with:
67+
version: 10.13.1
68+
69+
- name: Install deps
70+
run: pnpm install --frozen-lockfile
71+
72+
- name: Build
73+
run: pnpm run prepare
74+
6475
- name: Extract release notes from CHANGELOG
6576
if: env.release_type != 'patch'
6677
id: changelog

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes for each version of the Ambient Music extension.
44

55
---
66

7+
## v0.5.1 2025 08 23
8+
9+
- feat: Improve error handling in `src/index.ts` to gracefully manage unknown error types.
10+
- chore: Update `package.json` to include linting and formatting in the `prepare` script, ensuring code quality before building.
11+
712
## v0.5.0 2025 08 23
813

914
-minor release

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "universal-version-bump",
33
"displayName": "Universal Version Bump",
4-
"version": "0.5.0",
4+
"version": "0.5.1",
55
"description": "A GitHub Action to automatically bump versions across any app (Node, Python, PHP, Docker, etc.)",
66
"main": "dist/index.js",
77
"scripts": {

0 commit comments

Comments
 (0)