Skip to content

Commit dddb4b3

Browse files
committed
Fool's release 2
1 parent 3571794 commit dddb4b3

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
id: cache-build
1717
uses: actions/cache@v3
1818
with:
19-
path: src/target
19+
path: target
2020
key: ${{ runner.os }}-build
2121

2222
- name: Cargo Test
2323
run: |
24-
cargo test --release
24+
cargo test
2525
2626
# - name: Cargo Clippy
2727
# run: |
28-
# cargo clippy --release -- -W clippy::pedantic -W clippy::nursery -W clippy::unwrap_used
28+
# cargo clippy -- -W clippy::pedantic -W clippy::nursery -W clippy::unwrap_used
2929

3030
- name: Cargo Build Binary
3131
run: |

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,18 @@ 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.0.2] - 2023-04-01
9+
10+
### Fixed
11+
12+
- Applied some `clippy` recommendations
13+
- Fixed GitHub actions cache for *target/* directory
14+
815
## [0.0.1] - 2023-04-01
916

1017
### Added
1118

12-
- Add project
19+
- Add project
1320

1421
### Removed
1522

@@ -19,5 +26,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1926

2027
- 'None
2128

22-
<!-- [0.1.1]: https://github.com/mbrav/git_raider/compare/0.0.1...0.0.2 -->
23-
[0.0.1]: https://github.com/mbrav/git_raider/releases/tag/0.0.1
29+
[0.0.2]: https://github.com/mbrav/git_raider/compare/0.0.1...0.0.2
30+
[0.0.1]: https://github.com/mbrav/git_raider/releases/tag/0.0.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git_raider"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
descripion = "Mass git repository search, replace and commit tool"
55
authors = ["mbrav <mbrav@protonmail.com>"]
66
edition = "2021"

0 commit comments

Comments
 (0)