From f43f693f7d83c1548b449c9a961167dd9070a919 Mon Sep 17 00:00:00 2001 From: Volodymyr Yahello Date: Sun, 2 Aug 2020 00:29:57 +0300 Subject: [PATCH] Release 0.0.1 version --- CHANGELOG.md | 6 +++++- uurl/__init__.py | 10 +++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 125d8f1..89259b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ Versions ======== -0.0.0 +0.0.1 ======== + +_Release date: 2020-08-02_ + +- Initial distribution of a package diff --git a/uurl/__init__.py b/uurl/__init__.py index de99e5c..bf7c33a 100644 --- a/uurl/__init__.py +++ b/uurl/__init__.py @@ -6,11 +6,11 @@ from uurl.protocol import HttpProtocol, HttpsProtocol, NetworkProtocol, Protocol from uurl.port import HttpPort, HttpsPort, NetworkPort, Port -__author__: str = "Volodymyr Yahello" -__email__: str = "vyahello@gmail.com" -__license__: str = "MIT" -__copyright__: str = f"Copyright 2020, {__author__}" -__version__: str = "0.0.0" +__author__: str = 'Volodymyr Yahello' +__email__: str = 'vyahello@gmail.com' +__license__: str = 'MIT' +__copyright__: str = f'Copyright 2020, {__author__}' +__version__: str = '0.0.1' __all__: Tuple[str, ...] = ( 'Address',