diff --git a/.install b/.install deleted file mode 100644 index e69de29..0000000 diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 62eeb20..d336dcd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ Changelog ========= +1.0.0 (2020-06-08) +================== + +- Final **1.0.0** release, which marks ``aiohttp-tus`` as library ready to be used in + production + 1.0.0rc1 (2020-04-02) ===================== diff --git a/aiohttp_tus/__init__.py b/aiohttp_tus/__init__.py index d977427..c35df75 100644 --- a/aiohttp_tus/__init__.py +++ b/aiohttp_tus/__init__.py @@ -2,4 +2,4 @@ __all__ = ("setup_tus",) __license__ = "BSD-3-Clause" -__version__ = "1.0.0rc1" +__version__ = "1.0.0" diff --git a/pyproject.toml b/pyproject.toml index 4f63308..3be8796 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ show_missing = true [tool.poetry] name = "aiohttp-tus" -version = "1.0.0rc1" +version = "1.0.0" description = "tus.io protocol implementation for aiohttp.web applications" authors = ["Igor Davydenko "] license = "BSD-3-Clause"