mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-01-05 23:59:09 +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/),
|
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).
|
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
|
## [0.4.2] - 2024-03-29
|
||||||
### Details
|
### Details
|
||||||
#### Bug Fixes
|
#### Bug Fixes
|
||||||
- Create folder for config
|
- Create folder for config by @daimond113
|
||||||
|
|
||||||
#### Features
|
#### Features
|
||||||
- Add documentation meta tags by @daimond113
|
- 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 Fixes
|
||||||
- :bug: correctly insert packages from lockfile by @daimond113
|
- :bug: correctly insert packages from lockfile by @daimond113
|
||||||
|
|
||||||
|
#### Continuous Integration
|
||||||
|
- :triangular_flag_on_post: remove macos aarch64 due to costs by @daimond113
|
||||||
|
|
||||||
#### Miscellaneous Tasks
|
#### Miscellaneous Tasks
|
||||||
- :alien: fix compilation due to zstd-sys by @daimond113
|
- :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
|
## [0.2.0] - 2024-03-17
|
||||||
### Details
|
### Details
|
||||||
|
#### Continuous Integration
|
||||||
|
- :white_check_mark: run clippy on all workspace members by @daimond113
|
||||||
|
|
||||||
#### Features
|
#### Features
|
||||||
- :children_crossing: add wally conversion by @daimond113
|
- :children_crossing: add wally conversion by @daimond113
|
||||||
- :sparkles: add embed metadata 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
|
#### Features
|
||||||
- :tada: initial commit by @daimond113
|
- :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.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.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
|
[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]]
|
[[package]]
|
||||||
name = "pesde"
|
name = "pesde"
|
||||||
version = "0.4.2"
|
version = "0.4.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"auth-git2",
|
"auth-git2",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pesde"
|
name = "pesde"
|
||||||
version = "0.4.2"
|
version = "0.4.3"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["daimond113 <contact@daimond113.com>"]
|
authors = ["daimond113 <contact@daimond113.com>"]
|
||||||
|
|
|
@ -64,7 +64,7 @@ trim = true
|
||||||
|
|
||||||
[git]
|
[git]
|
||||||
conventional_commits = true
|
conventional_commits = true
|
||||||
filter_unconventional = true
|
filter_unconventional = false
|
||||||
split_commits = false
|
split_commits = false
|
||||||
commit_parsers = [
|
commit_parsers = [
|
||||||
{ message = "^feat", group = "Features" },
|
{ message = "^feat", group = "Features" },
|
||||||
|
@ -76,10 +76,13 @@ commit_parsers = [
|
||||||
{ message = "^test", group = "Testing" },
|
{ message = "^test", group = "Testing" },
|
||||||
{ message = "^chore\\(release\\): prepare for", skip = true },
|
{ message = "^chore\\(release\\): prepare for", skip = true },
|
||||||
{ message = "^chore", group = "Miscellaneous Tasks" },
|
{ message = "^chore", group = "Miscellaneous Tasks" },
|
||||||
|
{ message = "^ci", group = "Continuous Integration" },
|
||||||
|
{ message = "^style", group = "Styling" },
|
||||||
{ body = ".*security", group = "Security" },
|
{ body = ".*security", group = "Security" },
|
||||||
|
{ message = ".*", group = "Miscellaneous Tasks" }
|
||||||
]
|
]
|
||||||
protect_breaking_commits = true
|
protect_breaking_commits = false
|
||||||
filter_commits = true
|
filter_commits = false
|
||||||
tag_pattern = "v[0-9].*"
|
tag_pattern = "v[0-9].*"
|
||||||
ignore_tags = ""
|
ignore_tags = ""
|
||||||
topo_order = true
|
topo_order = true
|
||||||
|
|
Loading…
Reference in a new issue