Skip to content

Commit

Permalink
Bump version: 0.9.3 → 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jkawamoto committed Oct 15, 2024
1 parent 4df59b5 commit cc0dea3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.3
current_version = 0.9.4
commit = True
tag = False

Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
exclude: ^CTranslate2/
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-merge-conflict
- id: check-yaml
- id: check-toml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.0
rev: v19.1.1
hooks:
- id: clang-format
types_or: [c++, c, cuda]
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ct2rs"
version = "0.9.3"
version = "0.9.4"
authors = ["Junpei Kawamoto <kawamoto.junpei@gmail.com>"]
categories = ["api-bindings"]
documentation = "https://docs.rs/ct2rs"
Expand Down Expand Up @@ -30,10 +30,10 @@ repository = "https://github.com/jkawamoto/ctranslate2-rs"
description = "Rust bindings for OpenNMT/CTranslate2"

[dependencies]
anyhow = "1.0.87"
cxx = { version = "1.0.128", features = ["c++17"] }
anyhow = "1.0.89"
cxx = { version = "1.0.129", features = ["c++17"] }
sentencepiece = "0.11.2"
tokenizers = "0.20.0"
tokenizers = "0.20.1"

# Dependencies for Whisper model
mel_spec = { version = "0.2.7", optional = true }
Expand All @@ -51,15 +51,15 @@ intel-mkl-src = { version = "0.8.1", optional = true, features = ["mkl-static-il
intel-mkl-src = { version = "0.8.1", optional = true }

[dev-dependencies]
clap = { version = "4.5.19", features = ["derive"] }
clap = { version = "4.5.20", features = ["derive"] }
rand = "0.8.5"

# Dependencies for Whisper example
hound = { version = "3.5.1" }

[build-dependencies]
cmake = "0.1.51"
cxx-build = "1.0.128"
cxx-build = "1.0.129"
walkdir = "2.5.0"

[features]
Expand Down

0 comments on commit cc0dea3

Please sign in to comment.