-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
80 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[default] | ||
locale = "en-us" | ||
extend-ignore-identifiers-re = [ | ||
"[bB][aA][zZ]" | ||
] | ||
|
||
[files] | ||
ignore-hidden = false | ||
extend-exclude = ["/.git"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "decasify" | ||
version = "0.5.7" | ||
version = "0.5.8" | ||
authors = ["Caleb Maclennan <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.73.0" | ||
|
@@ -99,9 +99,13 @@ assert_cmd = "2.0" | |
predicates = "3.1" | ||
|
||
[package.metadata.git-cliff.git] | ||
protect_breaking_commits = true | ||
commit_parsers = [ | ||
{ message = "^feat", group = "<!-- 0 -->Features" }, | ||
{ message = "^fix", group = "<!-- 1 -->Bug Fixes" }, | ||
{ message = "^perf", group = "<!-- 2 -->Performance" }, | ||
{ message = ".*", skip = true }, | ||
] | ||
commit_preprocessors = [ | ||
{ pattern = '.*', replace_command = 'typos --write-changes -' }, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
rockspec_format = "1.0" | ||
package = "decasify" | ||
version = "0.5.8-1" | ||
|
||
source = { | ||
url = "git+https://github.com/alerque/decasify.git", | ||
dir = "decasify", | ||
tag = "v0.5.8" | ||
} | ||
|
||
description = { | ||
summary = "Lua C module built from the Rust decasify crate to cast strings to title-case according to locale specific style guides including Turkish support", | ||
detailed = [[ | ||
A Lua library exposed as a C module built from the Rust decasify crate. | ||
Provides casing functions for long strings (not just individual words) | ||
supporting the grammatical style guides of various locales including Turkish. | ||
]], | ||
license = "GPL-3.0-only", | ||
homepage = "https://github.com/alerque/decasify", | ||
} | ||
|
||
dependencies = { | ||
"lua >= 5.1", | ||
-- v2.0 broke support for LuaRocks 3.1 under Lua 5.1, pin to old version until fixed | ||
-- https://github.com/khvzak/luarocks-build-rust-mlua/pull/10 | ||
"luarocks-build-rust-mlua == 0.1.2-1" | ||
} | ||
|
||
build = { | ||
type = "rust-mlua", | ||
modules = { | ||
"decasify" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters