From f3a7508cef94af1ecc7e65260408b3e0813d30e6 Mon Sep 17 00:00:00 2001 From: AnonymouX47 Date: Sun, 14 May 2023 22:30:47 +0100 Subject: [PATCH] chore: Bump package version to `0.1.0` --- setup.py | 2 +- src/urwidgets/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9df6953..2ab3d4e 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name="urwidgets", - version="0.1.0.dev0", + version="0.1.0", author="AnonymouX47", author_email="anonymoux47@gmail.com", url="https://github.com/AnonymouX47/urwidgets", diff --git a/src/urwidgets/__init__.py b/src/urwidgets/__init__.py index c98ee0e..5fc4fbc 100644 --- a/src/urwidgets/__init__.py +++ b/src/urwidgets/__init__.py @@ -34,7 +34,7 @@ parse_text, ) -version_info = (0, 1, 0, "dev") +version_info = (0, 1, 0) # Follows https://semver.org/spec/v2.0.0.html __version__ = ".".join(map(str, version_info[:3]))