From acd2617d7a1c371131177c715f37a3c281ef29bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gonz=C3=A1lez?= Date: Tue, 9 Apr 2024 18:50:33 +0200 Subject: [PATCH] bump version to 0.1.0 - first pkg named "tetra" --- docs/changelog.md | 2 +- tetra/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 8f780e8..78a884c 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -12,7 +12,7 @@ title: Changelog implementing some additional functionality. After v1.0 we will move to using [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.0.6] - unreleased +## [0.1.0] - unreleased ### Changes - **New package name: tetra** - add conditional block check within components diff --git a/tetra/__init__.py b/tetra/__init__.py index dcf54f4..41feb46 100644 --- a/tetra/__init__.py +++ b/tetra/__init__.py @@ -1,5 +1,5 @@ from .components import BasicComponent, Component, public from .library import Library -__version__ = "0.0.5" +__version__ = "0.1.0" __version_info__ = tuple([int(num) for num in __version__.split(".")])