diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..222562c --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,4 @@ +# 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 063f1c6..716df18 100644 --- a/moadaly/__init__.py +++ b/moadaly/__init__.py @@ -1,6 +1,6 @@ """A feature-rich Qt6 application to calculate the grade point average and other related stuff for university students.""" -__version__ = "0.0.0" +__version__ = "0.1.0-alpha.1" __author__ = "zer0-x" __maintainer__ = __author__ __license__ = "GPL-3.0"