Skip to content

Commit

Permalink
finalize 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Apr 25, 2020
1 parent 44e5814 commit 79e83bf
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 21 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/linux_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
pip install wheel
python setup.py bdist_wheel
ls ./dist
- name: Publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
twine upload dist/*
- name: Publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
twine upload dist/*
10 changes: 5 additions & 5 deletions .github/workflows/macos_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
python setup.py bdist_wheel
ls ./dist
- name: Publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
twine upload dist/*
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
twine upload dist/*
12 changes: 6 additions & 6 deletions .github/workflows/windows_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
pip install wheel
python setup.py bdist_wheel
ls ./dist
- name: Publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
twine upload dist/*
- name: Publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
twine upload dist/*
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.1"
version = "0.3.2"
authors = ["Markus Klein"]
edition = "2018"
license = "MIT"
Expand Down
8 changes: 7 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
Changelog
=========


0.3.2
------

* Publish server wheels to pypi

0.3.1
-----

* Publish server wheels to pypi
* Botched test release

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.1",
version="0.3.2",
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 79e83bf

Please sign in to comment.