diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index cacb8eac9..94ba13e94 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -2,8 +2,11 @@ name: Rust on: push: + branches: [ master, release-* ] pull_request: branches: [master] + release: + types: [published] workflow_dispatch: env: diff --git a/python/setup.py b/python/setup.py index a3b5a46d2..ffd532fe9 100644 --- a/python/setup.py +++ b/python/setup.py @@ -35,7 +35,7 @@ VERSION_MAJOR = 0 VERSION_MINOR = 7 -VERSION_PATCH = 2 +VERSION_PATCH = 3 VERSION_DEV = 0 IS_RELEASED = False diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 0e2d50ff2..7be43c32b 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "keyvi" -version = "0.7.2" +version = "0.7.3" build = "build.rs" authors = ["Hendrik Muhs", "Narek Gharibyan ", "Subu "] license = "Apache-2.0"