6 Commits

Author SHA1 Message Date
9da30b40b7 fix(deps): update all dependencies 2025-12-08 04:20:51 +00:00
4134c4dd7c chore(deps): update rust crate serde to v1.0.218
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2025-02-21 01:32:47 +00:00
67a0f5d1fc chore(release): v0.6.0 (#39)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore(release): 0.6.0

Co-authored-by: cuddle-please <bot@cuddle.sh>
Reviewed-on: https://git.front.kjuulh.io/kjuulh/cuddle-please/pulls/39
2025-01-10 00:29:53 +01:00
17878cace3 feat: ignore git found
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
2025-01-10 00:28:08 +01:00
b059201aea fix: multi line commit bodies should be prefixed with correct amount of spaces
All checks were successful
continuous-integration/drone/push Build is passing
this allows multi line commit messages to be displayed in a nice manner
2025-01-10 00:20:12 +01:00
e7fdc1813a docs: add simple docs
All checks were successful
continuous-integration/drone/push Build is passing
2025-01-10 00:14:06 +01:00
6 changed files with 286 additions and 273 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
target/ target/
.cuddle/ .cuddle/
.env .env
crates/cuddle-please/testdata/git-found/

View File

@@ -9,11 +9,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.6.0] - 2025-01-09 ## [0.6.0] - 2025-01-09
### Added ### Added
- ignore git found
- enable commit bodies in changelog and fixes general warnings and updates (#49) - 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 - removed tests for now
- update deps - update deps
- update - 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 ### Other
- *(deps)* update rust crate serde to v1.0.217 - *(deps)* update rust crate serde to v1.0.217
- *(deps)* update rust crate serde to v1.0.216 - *(deps)* update rust crate serde to v1.0.216

527
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -17,7 +17,7 @@ clap = { version = "4.5.23", features = ["derive", "env"] }
dotenvy = { version = "0.15.7" } dotenvy = { version = "0.15.7" }
url = { version = "2.5.0" } url = { version = "2.5.0" }
serde_yaml = { version = "0.9.34+deprecated" } serde_yaml = { version = "0.9.34+deprecated" }
yaml-rust2 = { version = "0.8.0" } yaml-rust2 = { version = "0.10.0" }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
semver = "1.0.22" semver = "1.0.22"
conventional_commit_parser = "0.9.4" conventional_commit_parser = "0.9.4"
@@ -28,7 +28,7 @@ regex = "1.10.4"
chrono = "0.4.37" chrono = "0.4.37"
lazy_static = "1.4.0" lazy_static = "1.4.0"
parse-changelog = "0.6.6" parse-changelog = "0.6.6"
toml_edit = "0.22.9" toml_edit = "0.23.0"
tracing-test = "0.2" tracing-test = "0.2"
pretty_assertions = "1.4" pretty_assertions = "1.4"

View File

@@ -40,12 +40,12 @@ See docs for more information about installation and some such
- [x] Fix: 0.0.0 -> **v**0.0.0 - [x] Fix: 0.0.0 -> **v**0.0.0
- [ ] Add release strategies - [ ] Add release strategies
- [ ] Add reporter for PR and Repositories - [x] Add reporter for PR and Repositories
- [ ] Add inquire for missing values when needed (when not running in ci or have a proper tty) - [ ] Add inquire for missing values when needed (when not running in ci or have a proper tty)
- [ ] Break down cuddle-please-misc - [x] Break down cuddle-please-misc
- [ ] ci(release): Add cuddle-please release artifacts for the different os and so on. - [ ] ci(release): Add cuddle-please release artifacts for the different os and so on.
### 0.x Milestone ### 0.x Milestone
- [ ] Add github support - [ ] Add github support
- [ ] Add custom strategies - [ ] Add custom strategies
- [ ] Add more granular tests - [x] Add more granular tests

View File

@@ -245,7 +245,9 @@ fn default_changelog_body_config(release_link: Option<&str>) -> String {
{% endif -%} {% endif -%}
{%- if commit.body -%} {%- if commit.body -%}
{%- if commit.body | length > 0 -%} {%- if commit.body | length > 0 -%}
{% raw %} {% endraw %}{{ commit.body | trim }} {% for line in commit.body | trim | split(pat="\n") -%}
{% raw %} {% endraw %}{{ line | trim }}
{% endfor -%}
{% endif -%} {% endif -%}
{% endif -%} {% endif -%}
{% endfor -%} {% endfor -%}
@@ -522,7 +524,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
let commits: Vec<&str> = vec![ let commits: Vec<&str> = vec![
"feat: some feature "feat: some feature
some body", some body
and another line",
"some random commit", "some random commit",
"fix: some fix", "fix: some fix",
"chore(scope): some chore", "chore(scope): some chore",
@@ -544,6 +547,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
- some feature - some feature
some body some body
and another line
### Fixed ### Fixed
- some fix - some fix