diff --git a/HISTORY.rst b/HISTORY.rst index baf2d19..4b93c40 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,3 +6,9 @@ History ------------------ * First release on PyPI. + +1.1.0 (2022-07-03) +------------------ + +* CI tests and deployment added +* Packaging build tested and beta ready \ No newline at end of file diff --git a/blockscan/__init__.py b/blockscan/__init__.py index b51c54e..f8d0117 100644 --- a/blockscan/__init__.py +++ b/blockscan/__init__.py @@ -2,6 +2,6 @@ from blockscan.connection.sync_connection import SyncConnection from blockscan.connection.async_connection import AsyncConnection -__version__ = "0.0.1" +__version__ = "1.1.0" __all__ = ["__version__", "Blockscan", "SyncConnection", "AsyncConnection"] diff --git a/setup.cfg b/setup.cfg index b0f5624..9b5da7b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.1 +current_version = 1.1.0 commit = True tag = True diff --git a/setup.py b/setup.py index 5937c07..84845c7 100644 --- a/setup.py +++ b/setup.py @@ -46,6 +46,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/SpeakinTelnet/blockscan-python', - version='0.0.1', + version='1.1.0', zip_safe=False, )