diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e6878c..3ff8747 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,5 +2,15 @@
All notable changes is documented here. The format is based on Keep a Changelog, and the project adheres to Semantic Versioning.
+## [0.0.1-beta] - 2021-10-01 +First **BETA** that needs rigorous testing and updates. + +### Added +- basic design of `API` object that can be used for fetching data, +- defination of `errors` to make end-user understand in case of an error. + ## Planning StageBuilding a python wrapper for fetching weather data (historical and/or forecast) from VisualCrossing. The wrapper is being developed in python since weather data is needed by everyone (like data science projects, etc.) and a python developer can easily fetch data without going through the huge well-defined documentation for retreiving data. The module is also kept simple so that anyone can start querying immediately.
+ + +[0.0.1-beta]: https://github.com/ZenithClown/VisualCrossing/releases/tag/v0.0.1-beta diff --git a/setup.py b/setup.py index 249a09b..40be73d 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ url = "https://github.com/ZenithClown/VisualCrossing", packages = find_packages(), classifiers = [ - "Development Status :: 1 - Planning", + "Development Status :: 1 - Beta", "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License" ], diff --git a/static/VERSION b/static/VERSION index 9f50d8d..2830201 100644 --- a/static/VERSION +++ b/static/VERSION @@ -1 +1 @@ -0.0.1-planning \ No newline at end of file +0.0.1-beta \ No newline at end of file