Skip to content

Commit

Permalink
Bump to 1.1.1a0
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Oct 23, 2021
1 parent 4679e93 commit fb3dacf
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 18 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python 3.7
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Cache PyPI
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -111,20 +109,22 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python 3.7
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
uses: py-actions/py-dependency-install@v2
with:
path: requirements-dev.txt
run:
python -m pip install -U pip wheel build whine
- name: Make dists
run:
python setup.py sdist bdist_wheel
- name: PyPI upload
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
twine upload dist/*
python -m build
- name: Release
uses: aio-libs/[email protected]
with:
changes_file: CHANGES.rst
name: aiozipkin
github_token: ${{ secrets.GITHUB_TOKEN }}
pypi_token: ${{ secrets.PYPI_TOKEN }}
artifact: ""
version_file: aiozipkin/__init__.py
fix_issue_regex: "\n?\\s*`#(\\d+) <https://github.com/aio-libs/aiozipkin/issues/\\1>`_"
fix_issue_repl: " (#\\1)"
14 changes: 14 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,20 @@ CHANGES

.. towncrier release notes start
1.1.1a0 (2021-10-23)
====================

Bugfixes
--------

- Fix unhandled AssertionError in aiohttp integration when unknown resource requested by the user.
`#400 <https://github.com/aio-libs/aiohttp/issues/400>`_
- Fix ``NoneType`` error when using ``SystemRoute``.
`#410 <https://github.com/aio-libs/aiohttp/issues/410>`_

----


1.1.0 (2021-05-17)
==================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/400.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion aiozipkin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from .tracer import Tracer, create, create_custom


__version__ = "1.1.0"
__version__ = "1.1.1a0"
__all__ = (
"Tracer",
"Sampler",
Expand Down

0 comments on commit fb3dacf

Please sign in to comment.