diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cd97974..3acd746 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ Changelog ========= +2.0.2 (2020-09-04) +================== + +**Features:** + +- Depend on ``attrs>=19.1,<21`` to allow use ``attrs==20.1.0`` in dependent + projects + +**Other:** + +- Massive infrastrucutre update: move code to ``src/`` directory, use latest + ``pytest`` for tests, better ``Makefile`` targets, etc + 2.0.1 (2020-07-21) ================== diff --git a/pyproject.toml b/pyproject.toml index d6b9275..bf0ab40 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ show_missing = true [tool.poetry] name = "rororo" -version = "2.0.2a0" +version = "2.0.2" description = "aiohttp.web OpenAPI 3 schema first server applications." authors = ["Igor Davydenko "] license = "BSD-3-Clause" diff --git a/src/rororo/__init__.py b/src/rororo/__init__.py index 3cae652..76503ee 100644 --- a/src/rororo/__init__.py +++ b/src/rororo/__init__.py @@ -39,4 +39,4 @@ __author__ = "Igor Davydenko" __license__ = "BSD-3-Clause" -__version__ = "2.0.2a0" +__version__ = "2.0.2" diff --git a/tests/openapi.json b/tests/openapi.json index 7aa045d..92227fb 100644 --- a/tests/openapi.json +++ b/tests/openapi.json @@ -2,7 +2,7 @@ "openapi": "3.0.3", "info": { "title": "rororo", - "version": "2.0.1", + "version": "2.0.2", "contact": { "name": "Igor Davydenko (developer)", "url": "https://igordavydenko.com", diff --git a/tests/openapi.yaml b/tests/openapi.yaml index 51d40db..ba7bfd3 100644 --- a/tests/openapi.yaml +++ b/tests/openapi.yaml @@ -2,7 +2,7 @@ openapi: "3.0.3" info: title: "rororo" - version: "2.0.1" + version: "2.0.2" contact: name: "Igor Davydenko (developer)" url: "https://igordavydenko.com"