Skip to content

Commit f247fb2

Browse files
committed
chore: v0.6.3
ci fix
1 parent 8c09adb commit f247fb2

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

.github/workflows/rust.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,22 @@ jobs:
5757
env:
5858
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
5959

60+
github-release:
61+
runs-on: ubuntu-latest
62+
permissions:
63+
contents: write # required to create release
64+
id-token: write # required for OIDC token exchange
65+
needs: publish-release
66+
steps:
67+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
68+
with:
69+
persist-credentials: false
70+
- uses: taiki-e/create-gh-release-action@56a8b3f8449593aa02b91f7b84da564f476e94f0 # v1.9.2
71+
with:
72+
branch: master
73+
changelog: CHANGELOG.md
74+
draft: true
75+
token: ${{ secrets.GITHUB_TOKEN }}
6076
- name: Publish github release
6177
run: |
6278
if [[ $(echo "${GTIHUB_REF#refs/tags/v}" | grep '-' > /dev/null) ]]; then

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.6.3] - 2026-03-05
9+
10+
### Changed
11+
12+
- Fixed screenshot on allscreen and clip, when there are more than one screens, by @RustyCoderX
13+
- Update deps
14+
- Fix publish ci
15+
16+
[0.6.3]: https://github.com/Decodetalkers/haruhishot/compare/v0.6.3-v0.5.0
17+
818
## [0.6.0] - 2026-03-05
919

1020
### Changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "0.6.2"
2+
version = "0.6.3"
33
edition = "2024"
44
license = "MIT"
55
description = "impl screencopy for wayland"
@@ -43,7 +43,7 @@ nix = { version = "0.31.1", features = ["fs", "mman"] }
4343
memmap2 = "0.9.10"
4444

4545
[dependencies]
46-
libharuhishot = { path = "libharuhishot", version = "0.6.2" }
46+
libharuhishot = { path = "libharuhishot", version = "0.6.3" }
4747

4848
image.workspace = true
4949
memmap2.workspace = true

0 commit comments

Comments
 (0)