diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 198bd5f..20866e4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -4,9 +4,6 @@ on: release: types: - created -# push: -# branches: -# - main # TEST PURPOSES ONLY jobs: publish-rust: @@ -19,9 +16,9 @@ jobs: uses: Swatinem/rust-cache@v2 with: key: ${{ runner.os }}-rust-${{ hashFiles('**/Cargo.toml') }} -# - run: cargo publish --token ${CRATES_TOKEN} -# env: -# CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }} + - run: cargo publish --token ${CRATES_TOKEN} + env: + CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }} external-build-python: uses: ./.github/workflows/reusable-build-python.yml @@ -46,4 +43,4 @@ jobs: - name: List wheels shell: bash run: ls -lah ./dist -# - uses: pypa/gh-action-pypi-publish@release/v1 + - uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index c9dd482..a92e75e 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -3,7 +3,7 @@ name = "fast_aug_python" description = "Fast data augmentation for text" authors = ["Konstantin Chernyshev "] readme = "./README.md" -version = "0.0.2" +version = "0.1.0" edition = "2021" license = "MIT" homepage = "https://github.com/k4black/fast-aug" diff --git a/fast_aug/Cargo.toml b/fast_aug/Cargo.toml index 75723f3..4822608 100644 --- a/fast_aug/Cargo.toml +++ b/fast_aug/Cargo.toml @@ -3,7 +3,7 @@ name = "fast_aug" description = "Fast data augmentation for text" authors = ["Konstantin Chernyshev "] readme = "./README.md" -version = "0.0.2" +version = "0.1.0" edition = "2021" license = "MIT" homepage = "https://github.com/k4black/fast-aug"