Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:
inputs:
version:
description: "Version to release, for example 2.0.0"
description: "Version to release, for example 2.1.0"
required: true
type: string

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cheetah-string"
version = "2.0.0"
version = "2.1.0"
authors = ["mxsm <mxsm@apache.org>"]
edition = "2021"
homepage = "https://github.com/mxsm/cheetah-string"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
cheetah-string = "2.0.0"
cheetah-string = "2.1.0"
```

### Optional Features

```toml
[dependencies]
cheetah-string = { version = "2.0.0", features = ["bytes", "serde", "simd"] }
cheetah-string = { version = "2.1.0", features = ["bytes", "serde", "simd"] }
```

Available features:
Expand Down
2 changes: 1 addition & 1 deletion bench-results/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Minimum metadata for generated JSON artifacts:
```json
{
"crate": "cheetah-string",
"version": "2.0.0",
"version": "2.1.0",
"profile": "release",
"target": "x86_64-unknown-linux-gnu",
"rustc": "rustc 1.xx.x",
Expand Down
2 changes: 1 addition & 1 deletion fuzz/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 src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
//! To enable SIMD acceleration:
//! ```toml
//! [dependencies]
//! cheetah-string = { version = "2.0.0", features = ["simd"] }
//! cheetah-string = { version = "2.1.0", features = ["simd"] }
//! ```
//!
//! # Examples
Expand Down
Loading