From d13876aefd9820a3f735c4bdef61191bb0be8a8a Mon Sep 17 00:00:00 2001 From: zer0-x <65136727+ZER0-X@users.noreply.github.com> Date: Mon, 25 Jul 2022 13:00:34 +0300 Subject: [PATCH] Bump verion 0.1.0-alpha.2 and update CHANGELOG.md --- CHANGELOG.md | 16 ++++++++++++++++ moadaly/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 222562c..fc84487 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# Unreleased + +# 0.1.0-alpha.2 +## Added + - Implement database features. + - Now you can create and delete profiles. + - You can switch between profiles in the fly. + - Calculation settings are getting pulled from the database. + - Creation of new semester and courses will be pushed to the database. + - When deleting profile or semester ther childs will be deleting as will. + - When updating course data, they will be updated in the database as will. + - Every time you open a profile, it's data will be loaded to the GUI. + - Now an action is available in the profile menu to export database to a json file. + - The app's entry point exit is now in the __main__.py file. + - `setup.py` file is now available to easily install the app. + # 0.1.0-alpha.1 - First alpha release. - Database related features are not yet implemented, the calculation just works, and the data are in memory while the app is running. diff --git a/moadaly/__init__.py b/moadaly/__init__.py index fc75da0..0309542 100644 --- a/moadaly/__init__.py +++ b/moadaly/__init__.py @@ -1,6 +1,6 @@ """Init file for moadaly module.""" -__version__ = "0.1.0-alpha.1" +__version__ = "0.1.0-alpha.2" __author__ = "zer0-x" __maintainer__ = __author__ __license__ = "GPL-3.0"