Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## Agent Contribution Guide

Whenever an automated agent lands code in this repository, it must also:

- Bump the crate version in `Cargo.toml` before shipping.
- Choose the bump size using semantic versioning rules:
- Increment the **major** version (`x.0.0`) for breaking changes.
- Increment the **minor** version when adding backward-compatible functionality.
- Increment the **patch** version for bug fixes and other backward-compatible maintenance work.

If you are unsure which category applies, err on the side of a **minor** bump and leave a note in your PR with the reasoning.
236 changes: 235 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loki-cli"
version = "0.9.3"
version = "0.10.0"
authors = ["Kyle W. Rader"]
description = "Loki: 🚀 A Git productivity tool"
homepage = "https://github.com/kyle-rader/loki-cli"
Expand All @@ -17,6 +17,7 @@ path = "src/main.rs"

[dependencies]
clap = { version = "4.5.4", features = ["derive", "unicode", "env"] }
chrono = { version = "0.4", features = ["clock"] }

[dev-dependencies]
test-case = "3.3.1"
Loading
Loading