Skip to content

Commit 79e83bf

Browse files
committed
finalize 0.3.2
1 parent 44e5814 commit 79e83bf

File tree

7 files changed

+27
-21
lines changed

7 files changed

+27
-21
lines changed

.github/workflows/linux_wheel.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
pip install wheel
2929
python setup.py bdist_wheel
3030
ls ./dist
31-
- name: Publish to PyPI
32-
env:
33-
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
34-
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
35-
run: |
36-
twine upload dist/*
31+
- name: Publish to PyPI
32+
env:
33+
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
34+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
35+
run: |
36+
twine upload dist/*

.github/workflows/macos_wheel.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
python setup.py bdist_wheel
2525
ls ./dist
2626
- name: Publish to PyPI
27-
env:
28-
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
29-
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
30-
run: |
31-
twine upload dist/*
27+
env:
28+
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
29+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
30+
run: |
31+
twine upload dist/*

.github/workflows/windows_wheel.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
pip install wheel
2424
python setup.py bdist_wheel
2525
ls ./dist
26-
- name: Publish to PyPI
27-
env:
28-
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
29-
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
30-
run: |
31-
twine upload dist/*
26+
- name: Publish to PyPI
27+
env:
28+
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
29+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
30+
run: |
31+
twine upload dist/*

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.1"
3+
version = "0.3.2"
44
authors = ["Markus Klein"]
55
edition = "2018"
66
license = "MIT"

Changelog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
Changelog
22
=========
33

4+
5+
0.3.2
6+
------
7+
8+
* Publish server wheels to pypi
9+
410
0.3.1
511
-----
612

7-
* Publish server wheels to pypi
13+
* Botched test release
814

915
0.3.0
1016
-----

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.1",
98+
version="0.3.2",
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)