From 1a1ada1e15422ed091ee9c40849c982aa5a18370 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Fri, 24 May 2024 23:13:29 +0300 Subject: [PATCH] chore: Release v0.5.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- rockspecs/decasify-0.5.1-1.rockspec | 32 +++++++++++++++++++++++++++++ 3 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 rockspecs/decasify-0.5.1-1.rockspec diff --git a/Cargo.lock b/Cargo.lock index 0a154a6..f8aa781 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -264,7 +264,7 @@ dependencies = [ [[package]] name = "decasify" -version = "0.5.0" +version = "0.5.1" dependencies = [ "assert_cmd", "clap", diff --git a/Cargo.toml b/Cargo.toml index c76c3a4..03d3b00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "decasify" -version = "0.5.0" +version = "0.5.1" authors = ["Caleb Maclennan "] edition = "2021" rust-version = "1.73.0" diff --git a/rockspecs/decasify-0.5.1-1.rockspec b/rockspecs/decasify-0.5.1-1.rockspec new file mode 100644 index 0000000..dcf6808 --- /dev/null +++ b/rockspecs/decasify-0.5.1-1.rockspec @@ -0,0 +1,32 @@ +rockspec_format = "1.0" +package = "decasify" +version = "0.5.1-1" + +source = { + url = "git+https://github.com/alerque/decasify.git", + dir = "decasify", + tag = "v0.5.1" +} + +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", + "luarocks-build-rust-mlua" +} + +build = { + type = "rust-mlua", + modules = { + "decasify" + } +}