From 2e9768348b417de31128d80c272d4760a7426c7e Mon Sep 17 00:00:00 2001 From: bl Date: Sat, 2 Sep 2017 13:28:30 -0700 Subject: [PATCH] Version bump --- R/DESCRIPTION | 4 ++-- README.md | 11 +++++++++++ python/fbprophet/__init__.py | 2 +- python/fbprophet/tests/test_prophet.py | 2 +- python/setup.py | 2 +- 5 files changed, 16 insertions(+), 5 deletions(-) diff --git a/R/DESCRIPTION b/R/DESCRIPTION index 126e186..2d089cd 100644 --- a/R/DESCRIPTION +++ b/R/DESCRIPTION @@ -1,7 +1,7 @@ Package: prophet Title: Automatic Forecasting Procedure -Version: 0.1.1 -Date: 2017-04-17 +Version: 0.2 +Date: 2017-09-02 Authors@R: c( person("Sean", "Taylor", email = "sjt@fb.com", role = c("cre", "aut")), person("Ben", "Letham", email = "bletham@fb.com", role = "aut") diff --git a/README.md b/README.md index 7c42109..7bf205e 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ Prophet is [open source software](https://code.facebook.com/projects/) released - Prophet R package: https://cran.r-project.org/package=prophet - Prophet Python package: https://pypi.python.org/pypi/fbprophet/ - Release blogpost: https://research.fb.com/prophet-forecasting-at-scale/ +- Prophet paper, "Forecasting at Scale": https://peerj.com/preprints/3190.pdf ## Installation in R @@ -59,6 +60,16 @@ Use `conda install gcc` to set up gcc. The easiest way to install Prophet is thr ## Changelog +### Version 0.2 (2017.09.02) + +- Forecasting with sub-daily data +- Daily seasonality, and custom seasonalities +- Extra regressors +- Access to posterior predictive samples +- Cross-validation function +- Saturating minimums +- Bugfixes + ### Version 0.1.1 (2017.04.17) - Bugfixes diff --git a/python/fbprophet/__init__.py b/python/fbprophet/__init__.py index 13c29a4..b3d3f47 100644 --- a/python/fbprophet/__init__.py +++ b/python/fbprophet/__init__.py @@ -7,4 +7,4 @@ from fbprophet.forecaster import Prophet -__version__ = '0.1.1' +__version__ = '0.2' diff --git a/python/fbprophet/tests/test_prophet.py b/python/fbprophet/tests/test_prophet.py index 277d021..a36af0f 100644 --- a/python/fbprophet/tests/test_prophet.py +++ b/python/fbprophet/tests/test_prophet.py @@ -532,7 +532,7 @@ class TestProphet(TestCase): fcst = m.predict(future) self.assertEqual(fcst.shape[1], 31) self.assertEqual(fcst['binary_feature'][0], 0) - self.assertEqual( + self.assertAlmostEqual( fcst['extra_regressors'][0], fcst['numeric_feature'][0] + fcst['binary_feature2'][0], ) diff --git a/python/setup.py b/python/setup.py index 2758ffd..0f21c1c 100644 --- a/python/setup.py +++ b/python/setup.py @@ -97,7 +97,7 @@ class TestCommand(test_command): setup( name='fbprophet', - version='0.1.1', + version='0.2', description='Automatic Forecasting Procedure', url='https://facebookincubator.github.io/prophet/', author='Sean J. Taylor , Ben Letham ',