From cf54cad490125803045d5cac47844a3beb09c5ce Mon Sep 17 00:00:00 2001 From: Markus Klein Date: Sat, 25 Apr 2020 13:18:20 +0200 Subject: [PATCH] finialize 0.3.3 --- .github/workflows/linux_wheel.yml | 3 ++- .github/workflows/macos_wheel.yml | 3 ++- .github/workflows/windows_wheel.yml | 3 ++- Cargo.lock | 2 +- Cargo.toml | 2 +- Changelog.md | 8 ++++++-- setup.py | 2 +- 7 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.github/workflows/linux_wheel.yml b/.github/workflows/linux_wheel.yml index 7614bf3..fa20c86 100644 --- a/.github/workflows/linux_wheel.yml +++ b/.github/workflows/linux_wheel.yml @@ -25,7 +25,8 @@ jobs: python-version: 3.8 - name: Package as wheel run: | - pip install wheel + python -m pip install --upgrade pip + pip install setuptools wheel twine python setup.py bdist_wheel ls ./dist - name: Publish to PyPI diff --git a/.github/workflows/macos_wheel.yml b/.github/workflows/macos_wheel.yml index 4fd9a83..f5e9693 100644 --- a/.github/workflows/macos_wheel.yml +++ b/.github/workflows/macos_wheel.yml @@ -20,7 +20,8 @@ jobs: python-version: 3.8 - name: Package as wheel run: | - pip install wheel + python -m pip install --upgrade pip + pip install setuptools wheel twine python setup.py bdist_wheel ls ./dist - name: Publish to PyPI diff --git a/.github/workflows/windows_wheel.yml b/.github/workflows/windows_wheel.yml index 1c2a7e7..e3202e8 100644 --- a/.github/workflows/windows_wheel.yml +++ b/.github/workflows/windows_wheel.yml @@ -20,7 +20,8 @@ jobs: python-version: 3.8 - name: Package as wheel run: | - pip install wheel + python -m pip install --upgrade pip + pip install setuptools wheel twine python setup.py bdist_wheel ls ./dist - name: Publish to PyPI diff --git a/Cargo.lock b/Cargo.lock index d241da5..cdb4db5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1387,7 +1387,7 @@ dependencies = [ [[package]] name = "throttle-server" -version = "0.3.2" +version = "0.3.3" dependencies = [ "actix-rt 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "actix-web 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index cad66cc..024ddc3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "throttle-server" -version = "0.3.2" +version = "0.3.3" authors = ["Markus Klein"] edition = "2018" license = "MIT" diff --git a/Changelog.md b/Changelog.md index 81f3253..6b27eee 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,16 +1,20 @@ Changelog ========= +0.3.3 +----- + +* Publish server wheels to pypi 0.3.2 ------ -* Publish server wheels to pypi +* Test release - no changes 0.3.1 ----- -* Botched test release +* Test release - no changes 0.3.0 ----- diff --git a/setup.py b/setup.py index e4eb156..2e2fe03 100644 --- a/setup.py +++ b/setup.py @@ -95,7 +95,7 @@ def run(self): setup( name="throttle-server", author="Markus klein", - version="0.3.2", + version="0.3.3", url="https://github.com/pacman82/throttle", description="Throttle server. Throttle is a http semaphore service, providing" "semaphores for distributed systems. Packaged as a wheel for the convinience of"