Skip to content

Commit dfe07b4

Browse files
authored
Merge pull request #122 from jkawamoto/bump
v0.9.12
2 parents e823f16 + 39e7627 commit dfe07b4

File tree

8 files changed

+16
-14
lines changed

8 files changed

+16
-14
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.9.11"
2+
current_version = "0.9.12"
33
commit = true
44
tag = false
55

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ko_fi: jkawamoto
2+
thanks_dev: u/gh/jkawamoto

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ repos:
99
- id: end-of-file-fixer
1010
- id: trailing-whitespace
1111
- repo: https://github.com/pre-commit/mirrors-clang-format
12-
rev: v21.1.2
12+
rev: v21.1.5
1313
hooks:
1414
- id: clang-format
1515
types_or: [c++, c, cuda]
1616
- repo: https://github.com/google/yamlfmt
17-
rev: v0.17.2
17+
rev: v0.20.0
1818
hooks:
1919
- id: yamlfmt
2020
- repo: local

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["ct2rs", "ct2rs-platform"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.9.11"
6+
version = "0.9.12"
77
authors = ["Junpei Kawamoto <[email protected]>"]
88
edition = "2021"
99
license = "MIT"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ Add this crate to your `Cargo.toml` with selecting the backends you want to use
1313

1414
```toml
1515
[dependencies]
16-
ct2rs = { version = "0.9.11", features = ["cuda", "dnnl", "mkl"] }
16+
ct2rs = { version = "0.9.12", features = ["cuda", "dnnl", "mkl"] }
1717
```
1818

1919
Or you can use platform-specific default features by using the `ct2rs-platform` crate:
2020

2121
```toml
2222
[dependencies]
23-
ct2rs = { version = "0.9.11", package = "ct2rs-platform" }
23+
ct2rs = { version = "0.9.12", package = "ct2rs-platform" }
2424
```
2525

2626
If you want [Whisper](https://huggingface.co/docs/transformers/model_doc/whisper) model support,

ct2rs-platform/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,31 @@ repository.workspace = true
1111
description = "Platform-specific default feature sets for ct2rs"
1212

1313
[target.'cfg(target_os = "windows")'.dependencies.ct2rs]
14-
version = "=0.9.11"
14+
version = "=0.9.12"
1515
path = "../ct2rs"
1616
default-features = false
1717
features = ["openmp-runtime-intel", "dnnl", "cuda", "cudnn", "cuda-dynamic-loading", "mkl"]
1818

1919
[target.'cfg(all(target_os = "macos", not(target_arch = "aarch64")))'.dependencies.ct2rs]
20-
version = "=0.9.11"
20+
version = "=0.9.12"
2121
path = "../ct2rs"
2222
default-features = false
2323
features = ["dnnl", "mkl"]
2424

2525
[target.'cfg(all(target_os = "macos", target_arch = "aarch64"))'.dependencies.ct2rs]
26-
version = "=0.9.11"
26+
version = "=0.9.12"
2727
path = "../ct2rs"
2828
default-features = false
2929
features = ["accelerate", "ruy"]
3030

3131
[target.'cfg(all(target_os = "linux", not(target_arch = "aarch64")))'.dependencies.ct2rs]
32-
version = "=0.9.11"
32+
version = "=0.9.12"
3333
path = "../ct2rs"
3434
default-features = false
3535
features = ["dnnl", "openmp-runtime-comp", "cuda", "cudnn", "cuda-dynamic-loading", "mkl", "tensor-parallel"]
3636

3737
[target.'cfg(all(target_os = "linux", target_arch = "aarch64"))'.dependencies.ct2rs]
38-
version = "=0.9.11"
38+
version = "=0.9.12"
3939
path = "../ct2rs"
4040
default-features = false
4141
features = ["openmp-runtime-comp", "openblas", "ruy"]

ct2rs-platform/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Add this crate as the `package` argument of the `ct2rs` crate in your `Cargo.tom
99

1010
```toml
1111
[dependencies]
12-
ct2rs = { package = "ct2rs-platform", version = "0.9.11" }
12+
ct2rs = { package = "ct2rs-platform", version = "0.9.12" }
1313
```
1414

1515
See the [ct2rs crate](../README.md) for more information.

ct2rs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ serde_json = { version = "1.0", optional = true }
4848
hf-hub = { version = "0.4", optional = true }
4949

5050
[target.'cfg(not(target_os = "windows"))'.dependencies]
51-
openblas-src = { version = "0.10.13", features = ["static"], optional = true }
51+
openblas-src = { version = "0.10", features = ["static"], optional = true }
5252

5353
[target.'cfg(target_os = "windows")'.dependencies]
54-
openblas-src = { version = "0.10.13", features = ["static", "system"], optional = true }
54+
openblas-src = { version = "0.10", features = ["static", "system"], optional = true }
5555

5656
[dev-dependencies]
5757
clap = { version = "4.5", features = ["derive"] }

0 commit comments

Comments
 (0)