Skip to content

Commit

Permalink
Version 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wezm committed May 23, 2024
1 parent 208794b commit 5f0fd8b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 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.

2 changes: 1 addition & 1 deletion 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.1.1"
version = "3.2.0"
edition = "2021"
authors = ["Wesley Moore <[email protected]>"]
rust-version = "1.70.0"
Expand Down
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

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

- Introduce `perf` cargo feature tied to the feature of the same
name in the regex crate.
- This allows building for wasm with this feature disabled,
producing a smaller wasm module.

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

- Tweak Cargo metadata to make crates.io accept it
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ An Example With Small Words and Sub-Phrases: "The Example"

Pre-compiled binaries are available for a some platforms:

* [FreeBSD 13+ amd64](https://releases.wezm.net/titlecase/3.0.0/titlecase-3.1.1-amd64-unknown-freebsd.tar.gz)
* [Linux x86\_64](https://releases.wezm.net/titlecase/3.1.1/titlecase-3.1.1-x86_64-unknown-linux-musl.tar.gz)
* [MacOS Universal](https://releases.wezm.net/titlecase/3.1.1/titlecase-3.1.1-universal-apple-darwin.tar.gz)
* [Windows x86\_64](https://releases.wezm.net/titlecase/3.1.1/titlecase-3.1.1-x86_64-pc-windows-msvc.zip)
* [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.1.1/titlecase-3.1.1-x86_64-unknown-linux-musl.tar.gz | tar zxf -
curl https://releases.wezm.net/titlecase/3.2.0/titlecase-3.2.0-x86_64-unknown-linux-musl.tar.gz | tar zxf -

### From Source

Expand Down

0 comments on commit 5f0fd8b

Please sign in to comment.