From cd573acd726bd29fb65756bfed290dfa6da9e52f Mon Sep 17 00:00:00 2001 From: Lucia Quirke Date: Mon, 2 Sep 2024 04:02:03 +0000 Subject: [PATCH] Bump package version --- .github/workflows/publish-wheel.yml | 13 +++++-------- Cargo.lock | 2 +- Cargo.toml | 2 +- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 11 deletions(-) diff --git a/.github/workflows/publish-wheel.yml b/.github/workflows/publish-wheel.yml index 98657bc..2c48cb6 100644 --- a/.github/workflows/publish-wheel.yml +++ b/.github/workflows/publish-wheel.yml @@ -8,22 +8,19 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest, windows-latest] python-version: ['3.10', '3.11'] + os: [ubuntu-latest, macos-latest, windows-latest] include: - os: ubuntu-latest target: x86_64-unknown-linux-gnu - - os: macos-latest - target: x86_64-apple-darwin - - os: windows-latest - target: x86_64-pc-windows-msvc - # Add ARM64 builds - os: ubuntu-latest target: aarch64-unknown-linux-gnu - python-version: '3.10' + - os: macos-latest + target: x86_64-apple-darwin - os: macos-latest target: aarch64-apple-darwin - python-version: '3.10' + - os: windows-latest + target: x86_64-pc-windows-msvc runs-on: ${{ matrix.os }} steps: diff --git a/Cargo.lock b/Cargo.lock index 321dda4..8db03a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -433,7 +433,7 @@ checksum = "4873307b7c257eddcb50c9bedf158eb669578359fb28428bef438fec8e6ba7c2" [[package]] name = "tokengrams" -version = "0.3.2" +version = "0.3.3" dependencies = [ "anyhow", "bincode", diff --git a/Cargo.toml b/Cargo.toml index 20ba479..f8a5ca1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "tokengrams" description = "Compute n-gram statistics and model language over pre-tokenized text corpora used to train large language models." license = "MIT" -version = "0.3.2" +version = "0.3.3" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/pyproject.toml b/pyproject.toml index 9d705ed..8f7c555 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tokengrams" -version = "0.3.2" +version = "0.3.3" description = "Efficiently computing & storing token n-grams from large corpora " authors = [ { name = "Nora Belrose", email = "nora@eleuther.ai" },