mirror of
https://github.com/TECHNOFAB11/pay-respects.git
synced 2025-12-12 06:20:09 +01:00
v0.6.8
This commit is contained in:
parent
5c94a35d8e
commit
65213efb3b
3 changed files with 26 additions and 15 deletions
23
CHANGELOG.md
23
CHANGELOG.md
|
|
@ -7,7 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.6.7] 2024-12-31
|
||||
## [0.6.8] - 2025-01-02
|
||||
|
||||
### Fixed
|
||||
|
||||
- Broken rule for `git` in the last version
|
||||
|
||||
### Removed
|
||||
|
||||
- Removed binary files from history. Hash of all relevant commits will change
|
||||
|
||||
## [0.6.7] - 2024-12-31
|
||||
|
||||
### Fixed
|
||||
|
||||
|
|
@ -18,7 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- Licenses for libraries changed to MPL-2.0 from AGPL-3.0
|
||||
|
||||
## [0.6.6] 2024-12-18
|
||||
## [0.6.6] - 2024-12-18
|
||||
|
||||
### Added
|
||||
|
||||
|
|
@ -28,7 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- Panic on `sudo` input command
|
||||
|
||||
## [0.6.5] 2024-12-13
|
||||
## [0.6.5] - 2024-12-13
|
||||
|
||||
### Added
|
||||
|
||||
|
|
@ -38,7 +48,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- Not getting `stderr` from command-not-found
|
||||
|
||||
## [0.6.4] 2024-12-12
|
||||
## [0.6.4] - 2024-12-12
|
||||
|
||||
### Added
|
||||
|
||||
|
|
@ -52,7 +62,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- Compile-time `_PR_LIB` changed to `_DEF_PR_LIB` to be explicit
|
||||
|
||||
## [0.6.3] 2024-12-11
|
||||
## [0.6.3] - 2024-12-11
|
||||
|
||||
### Added
|
||||
|
||||
|
|
@ -116,7 +126,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
History start.
|
||||
|
||||
[unreleased]: https://github.com/iffse/pay-respects/compare/v0.6.7..HEAD
|
||||
[unreleased]: https://github.com/iffse/pay-respects/compare/v0.6.8..HEAD
|
||||
[0.6.8]: https://github.com/iffse/pay-respects/compare/v0.6.8..HEAD
|
||||
[0.6.7]: https://github.com/iffse/pay-respects/compare/v0.6.6..v0.6.7
|
||||
[0.6.6]: https://github.com/iffse/pay-respects/compare/v0.6.5..v0.6.6
|
||||
[0.6.5]: https://github.com/iffse/pay-respects/compare/v0.6.4..v0.6.5
|
||||
|
|
|
|||
16
Cargo.lock
generated
16
Cargo.lock
generated
|
|
@ -43,9 +43,9 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|||
|
||||
[[package]]
|
||||
name = "bstr"
|
||||
version = "1.11.1"
|
||||
version = "1.11.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "786a307d683a5bf92e6fd5fd69a7eb613751668d1d8d67d802846dfe367c62c8"
|
||||
checksum = "c94feba04f99cbce6558bbe1c18e38692a056981cb66c96f0878c2452aa28023"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
"serde",
|
||||
|
|
@ -445,7 +445,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "pay-respects"
|
||||
version = "0.6.7"
|
||||
version = "0.6.8"
|
||||
dependencies = [
|
||||
"colored",
|
||||
"inquire",
|
||||
|
|
@ -793,9 +793,9 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|||
|
||||
[[package]]
|
||||
name = "syn"
|
||||
version = "2.0.93"
|
||||
version = "2.0.94"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9c786062daee0d6db1132800e623df74274a0a87322d8e183338e01b3d98d058"
|
||||
checksum = "987bc0be1cdea8b10216bd06e2ca407d40b9543468fafd3ddfb02f36e77f71f3"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
|
@ -911,7 +911,7 @@ dependencies = [
|
|||
"serde",
|
||||
"serde_spanned",
|
||||
"toml_datetime",
|
||||
"winnow 0.6.20",
|
||||
"winnow 0.6.21",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -1161,9 +1161,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "winnow"
|
||||
version = "0.6.20"
|
||||
version = "0.6.21"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
|
||||
checksum = "e6f5bb5257f2407a5425c6e749bfd9692192a73e70a6060516ac04f889087d68"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pay-respects"
|
||||
authors = ["iff <iff@ik.me>"]
|
||||
version = "0.6.7"
|
||||
version = "0.6.8"
|
||||
edition = "2021"
|
||||
|
||||
# for crates.io
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue