Compare commits
1 Commits
renovate/s
...
3ec1f98271
Author | SHA1 | Date | |
---|---|---|---|
|
3ec1f98271 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,4 +1,3 @@
|
||||
target/
|
||||
.cuddle/
|
||||
.env
|
||||
crates/cuddle-please/testdata/git-found/
|
||||
|
13
CHANGELOG.md
13
CHANGELOG.md
@@ -9,24 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
## [0.6.0] - 2025-01-09
|
||||
|
||||
### Added
|
||||
- ignore git found
|
||||
- enable commit bodies in changelog and fixes general warnings and updates (#49)
|
||||
Allows commit bodies to show up in release notes, this is something I'd prefer as my releases are usually short, and I'd like to see these as I don't use pull requests as often, and often miss the context, as I don't link to commits currently.
|
||||
|
||||
Also fixes a lot of warnings and reintroduces failing tests, still not perfect, but better than before.
|
||||
Co-authored-by: kjuulh <contact@kjuulh.io>
|
||||
Co-committed-by: kjuulh <contact@kjuulh.io>
|
||||
- removed tests for now
|
||||
- update deps
|
||||
- update
|
||||
|
||||
### Docs
|
||||
- add simple docs
|
||||
|
||||
### Fixed
|
||||
- multi line commit bodies should be prefixed with correct amount of spaces
|
||||
this allows multi line commit messages to be displayed in a nice manner
|
||||
|
||||
### Other
|
||||
- *(deps)* update rust crate serde to v1.0.217
|
||||
- *(deps)* update rust crate serde to v1.0.216
|
||||
|
8
Cargo.lock
generated
8
Cargo.lock
generated
@@ -2525,18 +2525,18 @@ checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
|
||||
|
||||
[[package]]
|
||||
name = "serde"
|
||||
version = "1.0.219"
|
||||
version = "1.0.217"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
||||
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
||||
dependencies = [
|
||||
"serde_derive",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "serde_derive"
|
||||
version = "1.0.219"
|
||||
version = "1.0.217"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
||||
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
@@ -40,12 +40,12 @@ See docs for more information about installation and some such
|
||||
|
||||
- [x] Fix: 0.0.0 -> **v**0.0.0
|
||||
- [ ] Add release strategies
|
||||
- [x] Add reporter for PR and Repositories
|
||||
- [ ] Add reporter for PR and Repositories
|
||||
- [ ] Add inquire for missing values when needed (when not running in ci or have a proper tty)
|
||||
- [x] Break down cuddle-please-misc
|
||||
- [ ] Break down cuddle-please-misc
|
||||
- [ ] ci(release): Add cuddle-please release artifacts for the different os and so on.
|
||||
|
||||
### 0.x Milestone
|
||||
- [ ] Add github support
|
||||
- [ ] Add custom strategies
|
||||
- [x] Add more granular tests
|
||||
- [ ] Add more granular tests
|
||||
|
@@ -245,9 +245,7 @@ fn default_changelog_body_config(release_link: Option<&str>) -> String {
|
||||
{% endif -%}
|
||||
{%- if commit.body -%}
|
||||
{%- if commit.body | length > 0 -%}
|
||||
{% for line in commit.body | trim | split(pat="\n") -%}
|
||||
{% raw %} {% endraw %}{{ line | trim }}
|
||||
{% endfor -%}
|
||||
{% raw %} {% endraw %}{{ commit.body | trim }}
|
||||
{% endif -%}
|
||||
{% endif -%}
|
||||
{% endfor -%}
|
||||
@@ -524,8 +522,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
let commits: Vec<&str> = vec![
|
||||
"feat: some feature
|
||||
|
||||
some body
|
||||
and another line",
|
||||
some body",
|
||||
"some random commit",
|
||||
"fix: some fix",
|
||||
"chore(scope): some chore",
|
||||
@@ -547,7 +544,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
### Added
|
||||
- some feature
|
||||
some body
|
||||
and another line
|
||||
|
||||
### Fixed
|
||||
- some fix
|
||||
|
Reference in New Issue
Block a user