Skip to content

Commit

Permalink
Version 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wezm committed Jul 12, 2024
1 parent 0187b2e commit cd3a02d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
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.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "titlecase"
description = "Capitalize text according to a style defined by John Gruber for Daring Fireball."
version = "3.2.0"
version = "3.3.0"
edition = "2021"
authors = ["Wesley Moore <[email protected]>"]
rust-version = "1.70.0"
Expand All @@ -26,4 +26,4 @@ wasm-bindgen = { version = "0.2.92", optional = true }
[features]
default = ["perf"]
perf = ["regex/perf"]
wasm = ["wasm-bindgen"]
wasm = ["dep:wasm-bindgen"]
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

## [3.3.0](https://github.com/wezm/titlecase/releases/tag/v3.3.0)

- Introduce `wasm` cargo feature to enable wasm functionality
to address [#26](https://github.com/wezm/titlecase/issues/26).

## [3.2.0](https://github.com/wezm/titlecase/releases/tag/v3.2.0)

- Introduce `perf` cargo feature tied to the feature of the same
Expand Down
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,8 @@ An Example With Small Words and Sub-Phrases: "The Example"

### Pre-compiled binaries

Pre-compiled binaries are available for a some platforms:

* [FreeBSD 13+ amd64](https://releases.wezm.net/titlecase/3.2.0/titlecase-3.2.0-amd64-unknown-freebsd.tar.gz)
* [Linux x86\_64](https://releases.wezm.net/titlecase/3.2.0/titlecase-3.2.0-x86_64-unknown-linux-musl.tar.gz)
* [MacOS Universal](https://releases.wezm.net/titlecase/3.2.0/titlecase-3.2.0-universal-apple-darwin.tar.gz)
* [Windows x86\_64](https://releases.wezm.net/titlecase/3.2.0/titlecase-3.2.0-x86_64-pc-windows-msvc.zip)

Example to download and extract a binary:

curl https://releases.wezm.net/titlecase/3.2.0/titlecase-3.2.0-x86_64-unknown-linux-musl.tar.gz | tar zxf -
Pre-compiled binaries are available for some platforms, check the
[latest release](https://github.com/wezm/titlecase/releases/latest).

### From Source

Expand Down

0 comments on commit cd3a02d

Please sign in to comment.