Skip to content

Commit

Permalink
chore: Release v0.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Jul 15, 2024
1 parent 11aa8c5 commit 94a6cda
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.5.6] - 2024-07-15

### Features

- *(wasm)* Implement API as WASM module
- Implement (fairly naive) sentence casing

## [0.5.5] - 2024-07-08

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "decasify"
version = "0.5.5"
version = "0.5.6"
authors = ["Caleb Maclennan <caleb@alerque.com>"]
edition = "2021"
rust-version = "1.73.0"
Expand Down
34 changes: 34 additions & 0 deletions rockspecs/decasify-0.5.6-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
rockspec_format = "1.0"
package = "decasify"
version = "0.5.6-1"

source = {
url = "git+https://github.com/alerque/decasify.git",
dir = "decasify",
tag = "v0.5.6"
}

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"
}
}

0 comments on commit 94a6cda

Please sign in to comment.