Skip to content

Commit fee5343

Browse files
authored
Merge pull request #17 from kernel/release-please--branches--main--changes--next--components--hypeman
release: 0.5.1
2 parents ea00702 + b668c43 commit fee5343

6 files changed

Lines changed: 24 additions & 8 deletions

File tree

.github/workflows/release-please.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,28 @@ on:
55
- main
66

77
permissions:
8-
contents: write
9-
pull-requests: write
8+
contents: read
109

1110
jobs:
1211
release-please:
1312
if: github.repository == 'kernel/hypeman-ts'
1413
runs-on: ubuntu-latest
1514

1615
steps:
16+
- name: Mint release token
17+
id: release-token
18+
uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1
19+
with:
20+
app-id: ${{ secrets.ADMIN_APP_ID }}
21+
private-key: ${{ secrets.ADMIN_APP_PRIVATE_KEY }}
22+
owner: kernel
23+
repositories: hypeman-ts
24+
permission-contents: write
25+
permission-issues: write
26+
permission-pull-requests: write
27+
permission-workflows: write
28+
1729
- uses: googleapis/release-please-action@5c625bfb5d1ff62eadeeb3772007f7f66fdcf071 # v4.4.1
1830
id: release
1931
with:
20-
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
32+
token: ${{ steps.release-token.outputs.token }}

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.5.0"
2+
".": "0.5.1"
33
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.5.1 (2026-08-06)
4+
5+
Full Changelog: [v0.5.0...v0.5.1](https://github.com/kernel/hypeman-ts/compare/v0.5.0...v0.5.1)
6+
37
## 0.5.0 (2026-07-29)
48

59
Full Changelog: [v0.4.0...v0.5.0](https://github.com/kernel/hypeman-ts/compare/v0.4.0...v0.5.0)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onkernel/hypeman",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "The official TypeScript library for the Hypeman API",
55
"author": "Hypeman <>",
66
"types": "dist/index.d.ts",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.5.0'; // x-release-please-version
1+
export const VERSION = '0.5.1'; // x-release-please-version

0 commit comments

Comments
 (0)