Skip to content

Commit

Permalink
finialize 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Apr 25, 2020
1 parent 79e83bf commit cf54cad
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/linux_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/macos_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/windows_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "throttle-server"
version = "0.3.2"
version = "0.3.3"
authors = ["Markus Klein"]
edition = "2018"
license = "MIT"
Expand Down
8 changes: 6 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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
-----
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit cf54cad

Please sign in to comment.