Skip to content

Commit b63d893

Browse files
authored
Merge pull request #120 from jkawamoto/bump
Update version and improve macOS build configuration
2 parents cc75884 + bc8865d commit b63d893

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
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.10"
2+
current_version = "0.9.11"
33
commit = true
44
tag = false
55

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
os: [macos-13, macos-14]
28+
os: [macos-15, macos-15-intel]
2929
backend: [ruy, accelerate]
3030
runs-on: ${{ matrix.os }}
3131

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ 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.1
12+
rev: v21.1.2
1313
hooks:
1414
- id: clang-format
1515
types_or: [c++, c, cuda]

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.10"
6+
version = "0.9.11"
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.10", features = ["cuda", "dnnl", "mkl"] }
16+
ct2rs = { version = "0.9.11", 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.10", package = "ct2rs-platform" }
23+
ct2rs = { version = "0.9.11", 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.10"
14+
version = "=0.9.11"
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.10"
20+
version = "=0.9.11"
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.10"
26+
version = "=0.9.11"
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.10"
32+
version = "=0.9.11"
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.10"
38+
version = "=0.9.11"
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.10" }
12+
ct2rs = { package = "ct2rs-platform", version = "0.9.11" }
1313
```
1414

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

0 commit comments

Comments
 (0)