diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 87d447ce..ba5243d6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -418,6 +418,13 @@ jobs: verbose: true print-hash: true + - name: Publish to Anaconda + run: | + pip install anaconda-client + export ANACONDA_API_TOKEN=${{ secrets.ANACONDA_API_TOKEN }} + anaconda login --token $ANACONDA_API_TOKEN + anaconda upload -u unum-cloud ./dist/artifact/*.tar.bz2 + publish_javascript: name: Publish JavaScript needs: versioning diff --git a/CITATION.cff b/CITATION.cff index 1bfaa82d..ec9344fd 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,7 +5,7 @@ authors: given-names: "Ash" orcid: "https://orcid.org/0000-0002-4882-1815" title: "USearch by Unum Cloud" -version: 2.6.0 +version: 2.7.0 doi: 10.5281/zenodo.7949416 date-released: 2022-06-12 url: "https://github.com/unum-cloud/usearch" diff --git a/Cargo.toml b/Cargo.toml index 111ac4bb..25ce6ef8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "usearch" -version = "2.6.0" +version = "2.7.0" authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"] description = "Smaller & Faster Single-File Vector Search Engine from Unum" edition = "2021" diff --git a/README.md b/README.md index 4df49bbc..85ef820f 100644 --- a/README.md +++ b/README.md @@ -392,7 +392,7 @@ doi = {10.5281/zenodo.7949416}, author = {Vardanian, Ash}, title = {{USearch by Unum Cloud}}, url = {https://github.com/unum-cloud/usearch}, -version = {2.6.0}, +version = {2.7.0}, year = {2022}, month = jun, } diff --git a/VERSION b/VERSION index e70b4523..24ba9a38 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.6.0 +2.7.0 diff --git a/conanfile.py b/conanfile.py index e715edee..a0ef7dbf 100644 --- a/conanfile.py +++ b/conanfile.py @@ -7,7 +7,7 @@ class USearchConan(ConanFile): name = "usearch" - version = '2.6.0' + version = '2.7.0' license = "Apache-2.0" description = "Smaller & Faster Single-File Vector Search Engine from Unum" homepage = "https://github.com/unum-cloud/usearch" diff --git a/csharp/nuget/nuget-package.props b/csharp/nuget/nuget-package.props index 5f7edb46..31a9cbf1 100644 --- a/csharp/nuget/nuget-package.props +++ b/csharp/nuget/nuget-package.props @@ -1,7 +1,7 @@ - 2.6.0 + 2.7.0 Unum Unum diff --git a/include/usearch/index.hpp b/include/usearch/index.hpp index 3a963b1b..83750133 100644 --- a/include/usearch/index.hpp +++ b/include/usearch/index.hpp @@ -10,7 +10,7 @@ #define UNUM_USEARCH_HPP #define USEARCH_VERSION_MAJOR 2 -#define USEARCH_VERSION_MINOR 6 +#define USEARCH_VERSION_MINOR 7 #define USEARCH_VERSION_PATCH 0 // Inferring C++ version diff --git a/package.json b/package.json index 3e4e0321..ccae9a6d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "usearch", - "version": "2.6.0", + "version": "2.7.0", "description": "Smaller & Faster Single-File Vector Search Engine from Unum", "author": "Ash Vardanian (https://ashvardanian.com/)", "license": "Apache 2.0", diff --git a/wasmer.toml b/wasmer.toml index 7aec15e0..ddc608fd 100644 --- a/wasmer.toml +++ b/wasmer.toml @@ -1,6 +1,6 @@ [package] name="unum/usearch" -version="2.6.0" +version="2.7.0" description="Smaller & Faster Single-File Vector Search Engine from Unum" license="Apache-2.0" readme="README.md"