Skip to content

Commit b4d4f20

Browse files
committed
Bump version to 0.6.0
1 parent 4961a2c commit b4d4f20

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

.github/workflows/build-artifacts-and-run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
${{ env.CARGO }} +stable test --profile fast --target ${{ matrix.target }} $EXTRA_CARGO_FLAGS
137137
138138
- name: Build release artifacts (binary and completions)
139-
if: ${{ inputs.upload_artifacts }}
139+
if: ${{ inputs.artifact_upload_mode != 'none' }}
140140
run: |
141141
${{ env.CARGO }} +stable build --release --target ${{ matrix.target }} $EXTRA_CARGO_FLAGS
142142
env:

.github/workflows/draft-release-automatic-trigger.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
uses: actions/checkout@v4
2222

2323
- name: Download artifacts
24-
uses: dawidd6/action-download-artifact@v6
24+
uses: actions/download-artifact@v4
2525
with:
2626
path: downloaded_artifacts
27-
workflow: ./.github/workflows/build-artifacts-and-run-tests.yml
28-
name: ouch-*
27+
pattern: ouch-*
28+
path: downloaded_artifacts
2929

3030
- name: Package release assets
3131
run: scripts/package-release-assets.sh

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,14 @@ Categories Used:
1818

1919
**Bullet points in chronological order by PR**
2020

21-
## [Unreleased](https://github.com/ouch-org/ouch/compare/0.5.1...HEAD)
21+
## [Unreleased](https://github.com/ouch-org/ouch/compare/0.6.0...HEAD)
22+
23+
### New Features
24+
### Improvements
25+
### Bug Fixes
26+
### Tweaks
27+
28+
## [0.6.0](https://github.com/ouch-org/ouch/compare/0.5.1...0.6.0)
2229

2330
### New Features
2431

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ouch"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = [
55
"João Marcos <[email protected]>",
66
"Vinícius Rodrigues Miguel <[email protected]>",

0 commit comments

Comments
 (0)