Skip to content

Commit ace76c1

Browse files
Merge pull request #36 from github/releases
bpe 0.2.0 releases
2 parents df29b9c + a10e23d commit ace76c1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

crates/bpe-openai/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bpe-openai"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "Prebuilt fast byte-pair encoders for OpenAI."
66
repository = "https://github.com/github/rust-gems"
@@ -13,18 +13,18 @@ crate-type = ["lib", "staticlib"]
1313
bench = false
1414

1515
[dependencies]
16-
bpe = { version = "0.1.0", path = "../bpe" }
16+
bpe = { version = "0.2.0", path = "../bpe" }
1717
either = "1.13"
1818
regex-automata = "0.4"
1919
rmp-serde = "1"
2020

2121
[dev-dependencies]
22-
bpe = { version = "0.1.0", path = "../bpe", features = ["rand"] }
22+
bpe = { version = "0.2.0", path = "../bpe", features = ["rand"] }
2323
tiktoken-rs = "0.6"
2424

2525
[build-dependencies]
2626
base64 = "0.22.1"
27-
bpe = { version = "0.1.0", path = "../bpe", features = ["tiktoken"] }
27+
bpe = { version = "0.2.0", path = "../bpe", features = ["tiktoken"] }
2828
flate2 = "1.0"
2929
rmp-serde = "1"
3030
serde = "1"

crates/bpe/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bpe"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "Fast byte-pair encoding implementation."
66
repository = "https://github.com/github/rust-gems"

0 commit comments

Comments
 (0)