Skip to content

Commit

Permalink
🔖 chore(release): prepare for v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
welpo committed Feb 4, 2024
1 parent fe7bef9 commit 0fe444c
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ Welcome to the changelog for git-sumi. This document aims to provide a comprehen

We use Semantic Versioning (SemVer) for our version numbers, formatted as MAJOR.MINOR.PATCH. Major version changes involve significant (breaking) changes, minor versions introduce features and improvements in a backward compatible manner, and patch versions are for bug fixes and minor tweaks.

## [0.0.2](https://github.com/welpo/git-sumi/compare/v0.0.1..v0.0.2) - 2024-02-04

### 💥 BREAKING CHANGES 💥

- *(display)* Add markdown table format ([#7](https://github.com/welpo/git-sumi/issues/7)) - ([2098e3b](https://github.com/welpo/git-sumi/commit/2098e3bea0c3a87a3ef477f7da68cd0cb275790c))

### ✨ Features

- *(display)* [**‼️BREAKING‼️**] Add markdown table format ([#7](https://github.com/welpo/git-sumi/issues/7)) - ([2098e3b](https://github.com/welpo/git-sumi/commit/2098e3bea0c3a87a3ef477f7da68cd0cb275790c))

## 0.0.1 - 2024-02-04

### ✨ Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-sumi"
version = "0.0.1" # managed by release script
version = "0.0.2" # managed by release script
authors = ["Óscar Fernández <[email protected]>"]
description = "Non-opinionated commit message linter"
edition = "2021"
Expand Down
43 changes: 43 additions & 0 deletions Cargo.toml-e
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
[package]
name = "git-sumi"
version = "0.0.1" # managed by release script
authors = ["Óscar Fernández <[email protected]>"]
description = "Non-opinionated commit message linter"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://sumi.rs"
readme = "README.md"
keywords = ["git", "commit", "lint", "conventional-commits", "cli"]
categories = ["command-line-utilities", "development-tools"]
repository = "https://github.com/welpo/git-sumi"

[dependencies]
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4"
dirs = "5"
env_logger = "0.11"
git-conventional = "0.12"
lazy_static = "1.4"
log = "0.4"
prettytable-rs = "0.10"
regex = "1.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = "0.26"
strum_macros = "0.26"
tabled = "0.15.0"
thiserror = "1.0"
toml = "0.8"

[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
rand = "0.8"
tempfile = "3.9"

[profile.release]
lto = true
codegen-units = 1
opt-level = "s"
panic = "abort" # Let it crash and force ourselves to write safe Rust.
strip = true

0 comments on commit 0fe444c

Please sign in to comment.