Skip to content

Commit

Permalink
Merge pull request #37 from SmithSamuelM/main
Browse files Browse the repository at this point in the history
Update to 0.6.13 to include bug fixes to http server
  • Loading branch information
SmithSamuelM authored Jul 8, 2024
2 parents a37bdb6 + b01785b commit 9f055be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
$ git tag # lists all tags
$ git tag -a v0.6.11 -m "new feature"
$ git show v0.6.11
$ git push --tags $ pushes tags to remote
$ git push --tags # pushes tags to default remote
$ git push ioflo --tags # pushes tags to ioflo remote
Best practices for setup.py and requirements.txt
Expand All @@ -43,7 +44,7 @@

setup(
name='hio',
version='0.6.12', # also change in src/hio/__init__.py
version='0.6.13', # also change in src/hio/__init__.py
license='Apache Software License 2.0',
description='Hierarchical Concurrency with Async IO',
long_description=("HIO Hierarchical Concurrency and Asynchronous IO Library. "
Expand Down
2 changes: 1 addition & 1 deletion src/hio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
hio package
"""

__version__ = '0.6.12' # also change in setup.py
__version__ = '0.6.13' # also change in setup.py

from .hioing import Mixin, HioError, ValidationError, VersionError

0 comments on commit 9f055be

Please sign in to comment.