Skip to content

Commit

Permalink
finalize 0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Apr 28, 2020
1 parent a570ce9 commit 72bb72c
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
pip install setuptools wheel twine
python setup.py bdist_wheel
ls ./dist
for f in ./dist/*linux_x86_64.whl; do mv "$f" "${f%linux_x86_64.whl}manylinux1_x86_64.whl"; done;
for f in ./dist/*cp38-cp38-linux_x86_64.whl; do mv "$f" "${f%cp38-cp38-linux_x86_64.whl}py2.py3-none-manylinux1_x86_64.whl"; done;
ls ./dist
- name: Publish to PyPI
env:
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.5"
version = "0.3.6"
authors = ["Markus Klein"]
edition = "2018"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Changelog
=========

0.3.5
0.3.6
-----

* Publish server wheels to pypi

0.3.1-4
0.3.1-5
-------

* Test release - no changes
Expand Down
8 changes: 8 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,14 @@ The server binary is published to [crates.io](https://crates.io) and thus instal
cargo install throttle-server
```

Alternativly there are ready to use binaries deployed to PyPI, which can be installed via pip:

```bash
pip install throttle-server
```

This has been done manly for the convinience of Python users, who want to try out the client without installing a Rust toolchain.

### Python Client

Python client is publish to [PyPi](https://pypi.org) and can be installed using pip.
Expand Down
2 changes: 1 addition & 1 deletion python_client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="throttle_client",
version="0.3.0",
version="0.3.6",
author="Markus Klein",
description="Client for Throttle. Throttle is a http semaphore service, providing"
"semaphores for distributed systems.",
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.5",
version="0.3.6",
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 72bb72c

Please sign in to comment.