From 560b5d882ae220f65ce164ada5a4d9ca37ac08e8 Mon Sep 17 00:00:00 2001 From: Magnus Date: Sat, 25 Jan 2020 10:15:12 +0000 Subject: [PATCH] Release v.0.4 (Public Beta) --- CHANGELOG.md | 9 ++++++++- README.md | 16 ---------------- setup.py | 2 +- simfin/__init__.py | 2 +- 4 files changed, 10 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abb5be3..d91c324 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,22 @@ # Changes to the SimFin Python package -## Version 0.4.0 (2020-MM-DD) +## Version 0.4.0 (2020-01-25) Public beta version. +Please be patient if you experience any problems. Although the system may look +fully automated, there is actually a little man sitting inside the server to +handle all of your requests: https://youtu.be/8cXF88XzALk + ### Changes - Added function `sf.max_drawdown()` - Added documentation using the sphinx system and setup automatic generation of the docs at: https://simfin.readthedocs.io/ + +- Setup automatic daily testing using GitHub Actions for both the simfin + package and the tutorials. ## Version 0.3.0 (2020-01-03) diff --git a/README.md b/README.md index 3150831..58e3cf2 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,3 @@ -# Beta Warning - -This is an early beta version which may set your computer on fire, cause -40 years of darkness, earth-quakes and volcanoes, the dead rising from -the grave, human sacrifice, dogs and cats living together. -[Mass hysteria!](https://www.youtube.com/watch?v=9S4cldkdCjE) - -If you experience any problems, you could try and install the simfin -package using the following command, to get the latest developer version: - - pip install git+https://github.com/simfin/simfin.git - -If you still experience problems - and your computer still works - then -please open a GitHub issue with a detailed error report. - - # SimFin - Simple financial data for Python SimFin makes it easy to obtain and use financial data in Python. diff --git a/setup.py b/setup.py index 97edbf1..b602072 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.3.0' +MY_VERSION = '0.4.0' setup( name='simfin', diff --git a/simfin/__init__.py b/simfin/__init__.py index 58922cc..a7e5478 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.3.0" +__version__ = "0.4.0" # Expose the following as top-level imports.