diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index 06e4d33..49b612f 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -4,8 +4,10 @@ name: Upload Python Package on: - release: - types: [created] + push: + # Sequence of patterns matched against refs/tags + tags: + - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 jobs: deploy: diff --git a/.github/workflows/release_binary.yml b/.github/workflows/release_binary.yml index 1441136..9a9f514 100644 --- a/.github/workflows/release_binary.yml +++ b/.github/workflows/release_binary.yml @@ -1,8 +1,10 @@ name: Release Binaries to GitHub on: - release: - types: [created] + push: + # Sequence of patterns matched against refs/tags + tags: + - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 jobs: release_win64: diff --git a/.github/workflows/release_dockerhub.yml b/.github/workflows/release_dockerhub.yml index 106779d..cd5367b 100644 --- a/.github/workflows/release_dockerhub.yml +++ b/.github/workflows/release_dockerhub.yml @@ -1,8 +1,10 @@ name: Publish Docker image to Docker Hub on: - release: - types: [created] + push: + # Sequence of patterns matched against refs/tags + tags: + - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 jobs: push_to_registry: diff --git a/Cargo.lock b/Cargo.lock index 046d80b..75ffa7e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1317,7 +1317,7 @@ dependencies = [ [[package]] name = "throttle-server" -version = "0.4.5" +version = "0.4.6" dependencies = [ "async-events", "axum", diff --git a/Changelog.md b/Changelog.md index c0f4fe8..19aeb1b 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,11 @@ Changelog ========= +0.4.6 +----- + +* Updated dependencies + 0.4.5 ----- diff --git a/pyproject.toml b/pyproject.toml index d921b73..3ccd59a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "throttle_client" -version = "0.4.5" +version = "0.4.6" authors = [{ name = "Markus Klein " }] license = { text = "MIT License" } description = "Client for Throttle. Throttle is an http semaphore service, providing semaphores for distributed systems." diff --git a/server/Cargo.toml b/server/Cargo.toml index 15f121a..5fdc153 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "throttle-server" -version = "0.4.5" +version = "0.4.6" authors = ["Markus Klein"] edition = "2018" license = "MIT"