diff --git a/docs/Release Notes.md b/docs/Release Notes.md index fc62a1f..ab150c4 100644 --- a/docs/Release Notes.md +++ b/docs/Release Notes.md @@ -1,6 +1,13 @@ Release Notes ============= +0.2.0 +----- +Released on December 20th 2024 +- Finalized README instructions +- Cleaned and documented code base + + 0.1.0 ----- Released on December 10th 2024 diff --git a/pyproject.toml b/pyproject.toml index 7c924be..defeef6 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "precog" -version = "0.1.0" +version = "0.2.0" description = "Bitcoin Price Prediction Subnet" authors = ["Coin Metrics", "Yuma Group"] readme = "README.md" diff --git a/tests/test_package.py b/tests/test_package.py index 02b7e72..a069908 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -16,4 +16,4 @@ def setUp(self): def test_package_version(self): # Check that version is as expected # Must update to increment package version successfully - self.assertEqual(__version__, "0.1.0") + self.assertEqual(__version__, "0.2.0")