8 Commits

Author SHA1 Message Date
cuddle-please
9119155622 chore(release): 0.5.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-01-10 05:34:00 +00:00
4f44862160 fix(deps): update rust crate clap to v4.5.26
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2025-01-10 01:33:59 +00:00
25d43765d9 fix(deps): update rust crate clap to v4.5.24
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2025-01-08 01:32:29 +00:00
88680da7d5 feat: empty empty
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-12-27 16:28:43 +01:00
2a46b7b170 feat: can handle empty struct
Some checks failed
continuous-integration/drone/push Build is failing
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-12-27 16:28:21 +01:00
f9513fe051 feat: trigger commit
Some checks failed
continuous-integration/drone/push Build is failing
2024-12-27 16:26:02 +01:00
09cfa5b88f feat: add publish
Some checks failed
continuous-integration/drone/push Build is failing
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-12-27 16:25:03 +01:00
88b602a124 chore: override release for smaller binaries
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-12-22 15:13:02 +01:00
5 changed files with 34 additions and 6 deletions

View File

@@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.5.0] - 2025-01-10
### Added
- empty empty
- can handle empty struct
- trigger commit
- add publish
### Fixed
- *(deps)* update rust crate clap to v4.5.26
- *(deps)* update rust crate clap to v4.5.24
### Other
- override release for smaller binaries
## [0.4.0] - 2024-12-22
### Added

10
Cargo.lock generated
View File

@@ -74,18 +74,18 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
version = "4.5.23"
version = "4.5.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84"
checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783"
dependencies = [
"clap_builder",
]
[[package]]
name = "clap_builder"
version = "4.5.23"
version = "4.5.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838"
checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121"
dependencies = [
"anstream",
"anstyle",
@@ -197,7 +197,7 @@ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
[[package]]
name = "kignore"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"clap",
"console",

View File

@@ -3,4 +3,13 @@ members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.4.0"
version = "0.5.0"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
debug = false
panic = "abort"
overflow-checks = false
strip = true

View File

@@ -15,6 +15,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.4", features = ["env", "unicode", "string"] }
console = "0.15.8"

View File

@@ -6,6 +6,9 @@ vars:
service: "kignore"
registry: kasperhermansen
rust:
publish: {}
please:
project:
owner: kjuulh