mirror of
https://github.com/pesde-pkg/pesde.git
synced 2024-12-12 11:00:36 +00:00
chore(release): prepare for v0.4.3
This commit is contained in:
parent
de35d5906a
commit
10a420b177
4 changed files with 38 additions and 6 deletions
31
CHANGELOG.md
31
CHANGELOG.md
|
@ -5,10 +5,32 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.4.3] - 2024-03-31
|
||||
### Details
|
||||
#### Bug Fixes
|
||||
- Ensure version is root
|
||||
|
||||
#### Documentation
|
||||
- Document exports field of manifest
|
||||
|
||||
#### Features
|
||||
- Support manifest-less repos & running local package bin export
|
||||
|
||||
#### Miscellaneous Tasks
|
||||
- Merge pull request #1 from Foorack/repo-patch
|
||||
|
||||
Update repository field in Cargo.toml by @daimond113 in [#1](https://github.com/daimond113/pesde/pull/1)
|
||||
- Update repository field in Cargo.toml by @Foorack
|
||||
|
||||
#### Refactor
|
||||
- Improve manifest parsing
|
||||
|
||||
## New Contributors
|
||||
* @Foorack made their first contribution
|
||||
## [0.4.2] - 2024-03-29
|
||||
### Details
|
||||
#### Bug Fixes
|
||||
- Create folder for config
|
||||
- Create folder for config by @daimond113
|
||||
|
||||
#### Features
|
||||
- Add documentation meta tags by @daimond113
|
||||
|
@ -19,6 +41,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
#### Bug Fixes
|
||||
- :bug: correctly insert packages from lockfile by @daimond113
|
||||
|
||||
#### Continuous Integration
|
||||
- :triangular_flag_on_post: remove macos aarch64 due to costs by @daimond113
|
||||
|
||||
#### Miscellaneous Tasks
|
||||
- :alien: fix compilation due to zstd-sys by @daimond113
|
||||
|
||||
|
@ -58,6 +83,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [0.2.0] - 2024-03-17
|
||||
### Details
|
||||
#### Continuous Integration
|
||||
- :white_check_mark: run clippy on all workspace members by @daimond113
|
||||
|
||||
#### Features
|
||||
- :children_crossing: add wally conversion by @daimond113
|
||||
- :sparkles: add embed metadata by @daimond113
|
||||
|
@ -103,6 +131,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
#### Features
|
||||
- :tada: initial commit by @daimond113
|
||||
|
||||
[0.4.3]: https://github.com/daimond113/pesde/compare/v0.4.2..v0.4.3
|
||||
[0.4.2]: https://github.com/daimond113/pesde/compare/v0.4.1..v0.4.2
|
||||
[0.4.1]: https://github.com/daimond113/pesde/compare/v0.4.0..v0.4.1
|
||||
[0.4.0]: https://github.com/daimond113/pesde/compare/v0.3.2..v0.4.0
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -3355,7 +3355,7 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|||
|
||||
[[package]]
|
||||
name = "pesde"
|
||||
version = "0.4.2"
|
||||
version = "0.4.3"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"auth-git2",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pesde"
|
||||
version = "0.4.2"
|
||||
version = "0.4.3"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
authors = ["daimond113 <contact@daimond113.com>"]
|
||||
|
|
|
@ -64,7 +64,7 @@ trim = true
|
|||
|
||||
[git]
|
||||
conventional_commits = true
|
||||
filter_unconventional = true
|
||||
filter_unconventional = false
|
||||
split_commits = false
|
||||
commit_parsers = [
|
||||
{ message = "^feat", group = "Features" },
|
||||
|
@ -76,10 +76,13 @@ commit_parsers = [
|
|||
{ message = "^test", group = "Testing" },
|
||||
{ message = "^chore\\(release\\): prepare for", skip = true },
|
||||
{ message = "^chore", group = "Miscellaneous Tasks" },
|
||||
{ message = "^ci", group = "Continuous Integration" },
|
||||
{ message = "^style", group = "Styling" },
|
||||
{ body = ".*security", group = "Security" },
|
||||
{ message = ".*", group = "Miscellaneous Tasks" }
|
||||
]
|
||||
protect_breaking_commits = true
|
||||
filter_commits = true
|
||||
protect_breaking_commits = false
|
||||
filter_commits = false
|
||||
tag_pattern = "v[0-9].*"
|
||||
ignore_tags = ""
|
||||
topo_order = true
|
||||
|
|
Loading…
Reference in a new issue