Skip to content

Commit c896914

Browse files
authored
Release 0.0.3 (#43)
- Bump version: 0.0.2 → 0.0.3 - Update changelog - Update changelog contributor credits
1 parent 76f9a62 commit c896914

File tree

6 files changed

+33
-19
lines changed

6 files changed

+33
-19
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
Changelog
22
=========
33

4+
[0.0.3](https://github.com/casey/filepack/releases/tag/0.0.3) - 2024-09-15
5+
--------------------------------------------------------------------------
6+
7+
### Added
8+
- Allow overwriting manifest with `--force` ([#41](https://github.com/casey/filepack/pull/41) by [casey](https://github.com/casey))
9+
- Add lint for junk files ([#38](https://github.com/casey/filepack/pull/38) by [casey](https://github.com/casey))
10+
- Allow specifying path to manifest ([#35](https://github.com/casey/filepack/pull/35) by [casey](https://github.com/casey))
11+
12+
### Changed
13+
- Allow portability lints by default ([#37](https://github.com/casey/filepack/pull/37) by [casey](https://github.com/casey))
14+
15+
### Misc
16+
- Add color to error and mismatch messages ([#42](https://github.com/casey/filepack/pull/42) by [casey](https://github.com/casey))
17+
- Update readme ([#36](https://github.com/casey/filepack/pull/36) by [casey](https://github.com/casey))
18+
- Return Entry from Options::hash_file ([#34](https://github.com/casey/filepack/pull/34) by [casey](https://github.com/casey))
19+
- Add progress bars ([#33](https://github.com/casey/filepack/pull/33) by [casey](https://github.com/casey))
20+
- Improve missing file error messages ([#32](https://github.com/casey/filepack/pull/32) by [casey](https://github.com/casey))
21+
- Add DESIGN.md ([#30](https://github.com/casey/filepack/pull/30) by [casey](https://github.com/casey))
22+
- Include file sizes in manifest ([#29](https://github.com/casey/filepack/pull/29) by [casey](https://github.com/casey))
23+
- Add `filpack hash` subcommand to hash single file ([#28](https://github.com/casey/filepack/pull/28) by [casey](https://github.com/casey))
24+
- Install Rust toolchain in release workflow ([#27](https://github.com/casey/filepack/pull/27) by [casey](https://github.com/casey))
25+
426
[0.0.2](https://github.com/casey/filepack/releases/tag/0.0.1) - 2024-09-06
527
--------------------------------------------------------------------------
628

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 = "filepack"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
authors = ["Casey Rodarmor <[email protected]>"]
55
autotests = false
66
categories = ["authentication", "command-line-utilities", "cryptography"]

README.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -208,20 +208,3 @@ hash function, but is now known to be insecure.
208208

209209
`filepack` and `b3sum` both use BLAKE3, a fast, general-purpose cryptographic
210210
hash function.
211-
212-
New Releases
213-
------------
214-
215-
New releases of `filepack` are made frequently so that users quickly get access to
216-
new features.
217-
218-
Release commit messages use the following template:
219-
220-
```
221-
Release x.y.z
222-
223-
- Bump version: x.y.z → x.y.z
224-
- Update changelog
225-
- Update changelog contributor credits
226-
- Update dependencies
227-
```

justfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ test-install-script:
5858
list-package:
5959
cargo package --list --allow-dirty
6060

61+
commit-release:
62+
git commit --edit --file release-commit-message.txt
63+
6164
test-progress-bar:
6265
#!/usr/bin/env bash
6366
mkdir -p tmp

release-commit-message.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Release x.y.z
2+
3+
- Bump version: x.y.z → x.y.z
4+
- Update changelog
5+
- Update changelog contributor credits
6+
- Update dependencies

0 commit comments

Comments
 (0)