Skip to content

Commit

Permalink
prepare for v0.19 release
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Apr 24, 2020
1 parent eee0b66 commit 27aeca5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,8 @@ jobs:
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.pypi_token }}

- name: publish docs
run: make publish-docs
env:
NETLIFY: ${{ secrets.netlify_token }}
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
History
-------

v0.19.0 (unreleased)
v0.19.0 (2020-04-24)
....................
* Python 3.8 support, #178
* fix concurrency with multiple workers, #180
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ docs:
mv old-docs docs/_build/html/old
@echo "open file://`pwd`/docs/_build/html/index.html"

.PHONY: deploy-docs
deploy-docs: docs
.PHONY: publish-docs
publish-docs: docs
cd docs/_build/ && cp -r html site && zip -r site.zip site
@curl -H "Content-Type: application/zip" -H "Authorization: Bearer ${NETLIFY}" \
--data-binary "@docs/_build/site.zip" https://api.netlify.com/api/v1/sites/arq-docs.netlify.com/deploys
2 changes: 1 addition & 1 deletion arq/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__all__ = ('VERSION',)

VERSION = '0.19a1'
VERSION = '0.19'

0 comments on commit 27aeca5

Please sign in to comment.