kjuulh
5fd902f87c
All checks were successful
continuous-integration/drone/push Build is passing
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>
32 lines
786 B
TOML
32 lines
786 B
TOML
[package]
|
|
name = "cuddle-please-release-strategy"
|
|
description = "A release-please inspired release manager tool, built on top of cuddle, but also useful standalone, cuddle-please supports, your ci of choice, as well as gitea, github"
|
|
repository = "https://git.front.kjuulh.io/kjuulh/cuddle-please"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
readme = "../../README.md"
|
|
license-file = "../../LICENSE"
|
|
publish = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
tracing.workspace = true
|
|
serde.workspace = true
|
|
semver.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tracing-test = { workspace = true, features = ["no-env-filter"] }
|
|
pretty_assertions.workspace = true
|
|
tempdir.workspace = true
|
|
|
|
[features]
|
|
rust-workspace = []
|
|
rust-crate = []
|
|
toml-edit = []
|
|
json-edit = []
|
|
yaml-edit = []
|
|
|
|
default = [
|
|
"json-edit"
|
|
]
|