Skip to content

Commit 929898c

Browse files
authored
Merge pull request #129 from jkawamoto/bump
v0.9.15
2 parents 8cffb65 + f097123 commit 929898c

9 files changed

Lines changed: 35 additions & 28 deletions

File tree

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

.github/workflows/build.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
check:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
- uses: dprint/check@v2.2
1919
- uses: pre-commit/action@v3.0.1
2020

@@ -27,14 +27,14 @@ jobs:
2727
runs-on: ${{ matrix.os }}
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v6
3131
with:
3232
submodules: recursive
3333
- uses: Swatinem/rust-cache@v2
3434
with:
3535
key: ${{ matrix.backend }}
3636
cache-on-failure: true
37-
- uses: actions/cache@v4
37+
- uses: actions/cache@v5
3838
with:
3939
path: ~/.cache/huggingface
4040
key: macos-test-data
@@ -53,7 +53,7 @@ jobs:
5353
LIBRARY_PATH: /usr/lib/x86_64-linux-gnu
5454

5555
steps:
56-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v6
5757
with:
5858
submodules: recursive
5959
- uses: dtolnay/rust-toolchain@stable
@@ -63,7 +63,7 @@ jobs:
6363
with:
6464
key: ${{ matrix.backend }}
6565
cache-on-failure: true
66-
- uses: actions/cache@v4
66+
- uses: actions/cache@v5
6767
with:
6868
path: ~/.cache/huggingface
6969
key: linux-test-data
@@ -79,7 +79,7 @@ jobs:
7979
backend: [openblas, ruy, dnnl, mkl]
8080
runs-on: windows-latest
8181
steps:
82-
- uses: actions/cache@v4
82+
- uses: actions/cache@v5
8383
with:
8484
path: C:/vcpkg/installed
8585
key: cache-vcpkg-packages
@@ -90,15 +90,15 @@ jobs:
9090
vcpkg integrate install
9191
echo "CMAKE_INCLUDE_PATH=$env:VCPKG_INSTALLATION_ROOT/installed/x64-windows-static/include/openblas;$env:CMAKE_INCLUDE_PATH" >> $env:GITHUB_ENV
9292
echo "CMAKE_LIBRARY_PATH=$env:VCPKG_INSTALLATION_ROOT/installed/x64-windows-static/lib;$env:CMAKE_LIBRARY_PATH" >> $env:GITHUB_ENV
93-
- uses: actions/checkout@v4
93+
- uses: actions/checkout@v6
9494
with:
9595
submodules: recursive
9696
- uses: dtolnay/rust-toolchain@stable
9797
- uses: Swatinem/rust-cache@v2
9898
with:
9999
key: ${{ matrix.backend }}
100100
cache-on-failure: true
101-
- uses: actions/cache@v4
101+
- uses: actions/cache@v5
102102
with:
103103
path: ~/.cache/huggingface
104104
key: windows-test-data
@@ -111,7 +111,7 @@ jobs:
111111
docs:
112112
runs-on: macos-latest
113113
steps:
114-
- uses: actions/checkout@v4
114+
- uses: actions/checkout@v6
115115
with:
116116
submodules: recursive
117117
- uses: Swatinem/rust-cache@v2

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
release:
1212
runs-on: macos-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
with:
1616
submodules: recursive
1717
- name: Publish

.gitignore

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
11
### Generated by gibo (https://github.com/simonwhitaker/gibo)
2-
### https://raw.github.com/github/gitignore/7b22f8ab6c85b4ef1469d72a8ba96462e2a44853/Rust.gitignore
2+
### https://raw.github.com/github/gitignore/fc6ce5da28a8c3480cc8a5acad050449f72a9261/Rust.gitignore
33

44
# Generated by Cargo
55
# will have compiled files and executables
6-
debug/
7-
target/
8-
9-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
10-
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
11-
Cargo.lock
6+
debug
7+
target
128

139
# These are backup files generated by rustfmt
1410
**/*.rs.bk
1511

1612
# MSVC Windows builds of rustc generate these, which store debugging information
1713
*.pdb
14+
15+
# Generated by cargo mutants
16+
# Contains mutation testing data
17+
**/mutants.out*/
18+
19+
# RustRover
20+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
21+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
22+
# and can be added to the global gitignore or merged into this file. For a more nuclear
23+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
24+
.idea/

.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.7
12+
rev: v21.1.8
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.14"
6+
version = "0.9.15"
77
authors = ["Junpei Kawamoto <kawamoto.junpei@gmail.com>"]
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.14", features = ["cuda", "dnnl", "mkl"] }
16+
ct2rs = { version = "0.9.15", 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.14", package = "ct2rs-platform" }
23+
ct2rs = { version = "0.9.15", 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.14"
14+
version = "=0.9.15"
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.14"
20+
version = "=0.9.15"
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.14"
26+
version = "=0.9.15"
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.14"
32+
version = "=0.9.15"
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.14"
38+
version = "=0.9.15"
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.14" }
12+
ct2rs = { package = "ct2rs-platform", version = "0.9.15" }
1313
```
1414

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

0 commit comments

Comments
 (0)