Skip to content

Commit cf54cad

Browse files
committed
finialize 0.3.3
1 parent 79e83bf commit cf54cad

File tree

7 files changed

+15
-8
lines changed

7 files changed

+15
-8
lines changed

.github/workflows/linux_wheel.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
python-version: 3.8
2626
- name: Package as wheel
2727
run: |
28-
pip install wheel
28+
python -m pip install --upgrade pip
29+
pip install setuptools wheel twine
2930
python setup.py bdist_wheel
3031
ls ./dist
3132
- name: Publish to PyPI

.github/workflows/macos_wheel.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
python-version: 3.8
2121
- name: Package as wheel
2222
run: |
23-
pip install wheel
23+
python -m pip install --upgrade pip
24+
pip install setuptools wheel twine
2425
python setup.py bdist_wheel
2526
ls ./dist
2627
- name: Publish to PyPI

.github/workflows/windows_wheel.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
python-version: 3.8
2121
- name: Package as wheel
2222
run: |
23-
pip install wheel
23+
python -m pip install --upgrade pip
24+
pip install setuptools wheel twine
2425
python setup.py bdist_wheel
2526
ls ./dist
2627
- name: Publish to PyPI

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "throttle-server"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
authors = ["Markus Klein"]
55
edition = "2018"
66
license = "MIT"

Changelog.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
Changelog
22
=========
33

4+
0.3.3
5+
-----
6+
7+
* Publish server wheels to pypi
48

59
0.3.2
610
------
711

8-
* Publish server wheels to pypi
12+
* Test release - no changes
913

1014
0.3.1
1115
-----
1216

13-
* Botched test release
17+
* Test release - no changes
1418

1519
0.3.0
1620
-----

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def run(self):
9595
setup(
9696
name="throttle-server",
9797
author="Markus klein",
98-
version="0.3.2",
98+
version="0.3.3",
9999
url="https://github.com/pacman82/throttle",
100100
description="Throttle server. Throttle is a http semaphore service, providing"
101101
"semaphores for distributed systems. Packaged as a wheel for the convinience of"

0 commit comments

Comments
 (0)