Skip to content

Commit

Permalink
Merge pull request #6 from I-Want-ToBelieve/release/0.1.3
Browse files Browse the repository at this point in the history
Release/0.1.3
  • Loading branch information
I-Want-ToBelieve authored Nov 24, 2023
2 parents 03d62d5 + c3a1852 commit 84a7ce5
Show file tree
Hide file tree
Showing 24 changed files with 159 additions and 17 deletions.
16 changes: 12 additions & 4 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"changelog": [
"@changesets/changelog-github",
{ "repo": "I-Want-ToBelieve/yakite" }
],
"commit": false,
"fixed": [["yakite-*", "krohnkite-core"]],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
"privatePackages": { "version": true, "tag": true },
"ignore": [],
"snapshot": {
"useCalculatedVersion": true,
"prereleaseTemplate": "{tag}-{commit}-{datetime}"
},
"linked": [],
"fixed": [["yakite-*", "krohnkite-core"]]
}
11 changes: 11 additions & 0 deletions .github/workflows/release-bin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ on:
types: [created]

jobs:
check_tag:
runs-on: ubuntu-latest
steps:
- name: Check if tag matches yakite-toast@
run: |
if [[ "${{ github.event.release.tag_name }}" =~ ^yakite-toast@ ]]; then
echo "Tag matches yakite-toast@, proceeding with the workflow."
else
echo "Tag does not match yakite-toast@, stopping the workflow."
exit 1
fi
upload:
runs-on: macos-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish to Crates.io
on:
push:
tags:
- '*'
- 'yakite@*' # only [email protected]

jobs:
publish:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ jobs:
# this expects you to have a script called release which does a build for your packages and calls changeset publish
publish: pnpm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} # https://stackoverflow.com/questions/75348291/how-to-trigger-github-actions-workflow-whenever-a-new-tag-was-pushed
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

6 changes: 6 additions & 0 deletions apps/krohnkite-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# krohnkite-core

## 0.1.3

### Patch Changes

- [`2098cc9`](https://github.com/I-Want-ToBelieve/yakite/commit/2098cc9f46d150498a8327d344dd7811748d5a8b) Thanks [@I-Want-ToBelieve](https://github.com/I-Want-ToBelieve)! - chore: release crates and use @changesets/changelog-github

## 0.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/krohnkite-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "krohnkite-core",
"version": "0.1.2",
"version": "0.1.3",
"description": "",
"type": "module",
"main": "./dist/index.js",
Expand Down
12 changes: 12 additions & 0 deletions apps/yakite-bridge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# yakite-bridge

## 0.1.3

### Patch Changes

- [`2098cc9`](https://github.com/I-Want-ToBelieve/yakite/commit/2098cc9f46d150498a8327d344dd7811748d5a8b) Thanks [@I-Want-ToBelieve](https://github.com/I-Want-ToBelieve)! - chore: release crates and use @changesets/changelog-github

- Updated dependencies [[`2098cc9`](https://github.com/I-Want-ToBelieve/yakite/commit/2098cc9f46d150498a8327d344dd7811748d5a8b)]:
- [email protected]
- [email protected]
- [email protected]
- [email protected]

## 0.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/yakite-bridge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yakite-bridge",
"version": "0.1.2",
"version": "0.1.3",
"description": "A dynamic tiled window management that bridges the gap between yabai and krohnkite",
"type": "module",
"main": "./dist/index.js",
Expand Down
9 changes: 9 additions & 0 deletions apps/yakite-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# yakite-config

## 0.1.3

### Patch Changes

- [`2098cc9`](https://github.com/I-Want-ToBelieve/yakite/commit/2098cc9f46d150498a8327d344dd7811748d5a8b) Thanks [@I-Want-ToBelieve](https://github.com/I-Want-ToBelieve)! - chore: release crates and use @changesets/changelog-github

- Updated dependencies [[`2098cc9`](https://github.com/I-Want-ToBelieve/yakite/commit/2098cc9f46d150498a8327d344dd7811748d5a8b)]:
- [email protected]

## 0.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/yakite-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yakite-config",
"version": "0.1.2",
"version": "0.1.3",
"description": "A dynamic tiled window management that bridges the gap between yabai and krohnkite",
"type": "module",
"main": "./dist/index.js",
Expand Down
13 changes: 13 additions & 0 deletions apps/yakite-daemon/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# yakite-daemon

## 0.1.3

### Patch Changes

- [`2098cc9`](https://github.com/I-Want-ToBelieve/yakite/commit/2098cc9f46d150498a8327d344dd7811748d5a8b) Thanks [@I-Want-ToBelieve](https://github.com/I-Want-ToBelieve)! - chore: release crates and use @changesets/changelog-github

- Updated dependencies [[`2098cc9`](https://github.com/I-Want-ToBelieve/yakite/commit/2098cc9f46d150498a8327d344dd7811748d5a8b)]:
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]

## 0.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/yakite-daemon/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yakite-daemon",
"version": "0.1.2",
"version": "0.1.3",
"description": "A dynamic tiled window management that bridges the gap between yabai and krohnkite",
"type": "module",
"main": "./dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions apps/yakite-message/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# yakite-message

## 0.1.3

### Patch Changes

- [`2098cc9`](https://github.com/I-Want-ToBelieve/yakite/commit/2098cc9f46d150498a8327d344dd7811748d5a8b) Thanks [@I-Want-ToBelieve](https://github.com/I-Want-ToBelieve)! - chore: release crates and use @changesets/changelog-github

## 0.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/yakite-message/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yakite-message",
"version": "0.1.2",
"version": "0.1.3",
"description": "A dynamic tiled window management that bridges the gap between yabai and krohnkite",
"type": "module",
"main": "./dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions apps/yakite-toast/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# yakite-toast

## 0.1.3

### Patch Changes

- [`2098cc9`](https://github.com/I-Want-ToBelieve/yakite/commit/2098cc9f46d150498a8327d344dd7811748d5a8b) Thanks [@I-Want-ToBelieve](https://github.com/I-Want-ToBelieve)! - chore: release crates and use @changesets/changelog-github

## 0.1.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions apps/yakite-toast/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "yakite-toast",
"private": true,
"version": "0.1.2",
"version": "0.1.3",
"changesetsExtra": {
"language": "objective-c",
"sources": ["src/yakite-toast.m"],
"versionUpdatePolicy": "source-code-replacement",
"prevVersion": "0.1.2"
"prevVersion": "0.1.3"
}
}
2 changes: 1 addition & 1 deletion apps/yakite-toast/src/yakite-toast.m
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ int main(int argc, const char * argv[]) {
BOOL help = [arguments containsObject:@"--help"];

if (version) {
printf("Version: 0.1.2\n");
printf("Version: 0.1.3\n");
return 0;
}

Expand Down
6 changes: 6 additions & 0 deletions apps/yakite-yabai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# yakite-yabai

## 0.1.3

### Patch Changes

- [`2098cc9`](https://github.com/I-Want-ToBelieve/yakite/commit/2098cc9f46d150498a8327d344dd7811748d5a8b) Thanks [@I-Want-ToBelieve](https://github.com/I-Want-ToBelieve)! - chore: release crates and use @changesets/changelog-github

## 0.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/yakite-yabai/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yakite-yabai",
"version": "0.1.2",
"version": "0.1.3",
"description": "A dynamic tiled window management that bridges the gap between yabai and krohnkite",
"type": "module",
"main": "./dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions apps/yakite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# yakite

## 0.1.3

### Patch Changes

- [`2098cc9`](https://github.com/I-Want-ToBelieve/yakite/commit/2098cc9f46d150498a8327d344dd7811748d5a8b) Thanks [@I-Want-ToBelieve](https://github.com/I-Want-ToBelieve)! - chore: release crates and use @changesets/changelog-github

## 0.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/yakite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yakite"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
description = "A dynamic tiled window management that bridges the gap between yabai and krohnkite"

Expand Down
2 changes: 1 addition & 1 deletion apps/yakite/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "yakite",
"private": true,
"version": "0.1.2",
"version": "0.1.3",
"changesetsExtra": {
"language": "rust",
"sources": [],
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"homepage": "https://github.com/I-Want-ToBelieve/yakite",
"bugs": "https://github.com/I-Want-ToBelieve/yakite/issues",
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@iarna/toml": "^2.2.5",
"@manypkg/cli": "^0.21.0",
Expand Down
58 changes: 58 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 84a7ce5

Please sign in to comment.