diff --git a/CHANGELOG.md b/CHANGELOG.md index 4292843..f465a73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,10 @@ # Changes to the SimFin Python package -## Version 0.6.0 (2020-MM-DD) +## Version 0.6.0 (2020-04-12) -??? +Public beta version. + +This version is all about signals: https://youtu.be/u15BUoioCZw ### Changes @@ -16,6 +18,7 @@ - Added unit-test for `signals.py` + ## Version 0.5.0 (2020-03-14) Public beta version. diff --git a/setup.py b/setup.py index 1f7f5c1..50e6c15 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ # This is also defined in simfin/__init__.py and must be # updated in both places. -MY_VERSION = '0.5.0' +MY_VERSION = '0.6.0' setup( name='simfin', diff --git a/simfin/__init__.py b/simfin/__init__.py index dbeef86..51d841f 100644 --- a/simfin/__init__.py +++ b/simfin/__init__.py @@ -1,5 +1,5 @@ # This is also defined in setup.py and must be updated in both places. -__version__ = "0.5.0" +__version__ = "0.6.0" # Expose the following as top-level imports.