From cf5512948f2d96c18cd778ac859397a80d4fec6d Mon Sep 17 00:00:00 2001 From: Titusz Pan Date: Sun, 24 Apr 2022 13:27:25 +0200 Subject: [PATCH] Release v0.2.0 --- CHANGELOG.md | 2 +- iscc_observer_evm/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_iscc_observer_evm.py | 2 +- tools/__init__.py | 9 --------- 5 files changed, 4 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c5cbd7..577c656 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.2.0] - Unreleased +## [0.2.0] - 2022-04-24 - Changed to docker configuration to smaller base image `python:3.9-slim` - Changed WEB3_URL env variable to WEB3_PROVIDER_URI - Added restart allways to example docker-compose.yml diff --git a/iscc_observer_evm/__init__.py b/iscc_observer_evm/__init__.py index 420af30..a9ffb6a 100644 --- a/iscc_observer_evm/__init__.py +++ b/iscc_observer_evm/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.0" +__version__ = "0.2.0" from iscc_observer_evm.settings import * from iscc_observer_evm.registry import * from iscc_observer_evm.chain import * diff --git a/pyproject.toml b/pyproject.toml index 8296ed6..55231f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "iscc-observer-evm" -version = "0.1.0" +version = "0.2.0" description = "ISCC Decentralized Content Registry - Observer Service for EVM based Blockchains." authors = ["Titusz "] license = "Apache-2.0" diff --git a/tests/test_iscc_observer_evm.py b/tests/test_iscc_observer_evm.py index b43e7aa..d543ab0 100644 --- a/tests/test_iscc_observer_evm.py +++ b/tests/test_iscc_observer_evm.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.1.0" + assert __version__ == "0.2.0" diff --git a/tools/__init__.py b/tools/__init__.py index eba3e59..e69de29 100644 --- a/tools/__init__.py +++ b/tools/__init__.py @@ -1,9 +0,0 @@ -# -*- coding: utf-8 -*- - - -def main(): - pass - - -if __name__ == "__main__": - main()