diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 15eeb833530..cf21e7aa2e9 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,5 +1,5 @@ # Release Notes -## PyMC3 3.0 (September xx, 2016) +## PyMC3 3.0 (January 9, 2017) We are proud and excited to release the first stable version of PyMC3, the product of more than [5 years](https://github.com/pymc-devs/pymc3/commit/85c7e06b6771c0d99cbc09cb68885cda8f7785cb) of ongoing development and contributions from over 80 individuals. PyMC3 is a Python module for Bayesian modeling which focuses on modern Bayesian computational methods, primarily gradient-based (Hamiltonian) MCMC sampling and variational inference. Models are specified in Python, which allows for great flexibility. The main technological difference in PyMC3 relative to previous versions is the reliance on Theano for the computational backend, rather than on Fortran extensions. @@ -47,6 +47,20 @@ We on the PyMC3 core team would like to thank everyone for contributing and now ### Contributors +The following authors contributed to this release: + +Chris Fonnesbeck +John Salvatier +Thomas Wiecki +Colin Carroll +Maxim Kochurov +Taku Yoshioka +Peadar Coyle (springcoil) +Austin Rochford +Osvaldo Martin + +In addition, the following community members contributed to this release: + A Kuz A. Flaxman Abraham Flaxman @@ -57,17 +71,13 @@ Andreas Klostermann Andres Asensio Ramos Andrew Clegg Anjum48 -AustinRochford Benjamin Edwards Boris Avdeev Brian Naughton Byron Smith Chad Heyne -Chris Fonnesbeck -Colin Corey Farwell David Huard -David Huard David Stück DeliciousHair Dustin Tran @@ -80,7 +90,7 @@ Imri Sofer Jake Biesinger James Webber John McDonnell -John Salvatier +Jon Sedar Jordi Diaz Jordi Warmenhoven Karlson Pfannschmidt @@ -89,33 +99,25 @@ Kyle Meyer Lin Xiao Mack Sweeney Matthew Emmett -Maxim Michael Gallaspy Nick Osvaldo Martin Patricio Benavente -Peadar Coyle (springcoil) Raymond Roberts Rodrigo Benenson Sergei Lebedev Skipper Seabold -Taku Yoshioka -The Gitter Badger Thomas Kluyver -Thomas Wiecki Tobias Knuth -Volodymyr Volodymyr Kazantsev Wes McKinney Zach Ploskey akuz -aloctavodia brandon willard dstuck ingmarschuster jan-matthis jason -jonsedar kiudee maahnman macgyver @@ -126,8 +128,7 @@ redst4r santon sgenoud stonebig -taku-y -tyarkoni +Tal Yarkoni x2apps zenourn diff --git a/docs/source/conf.py b/docs/source/conf.py index 4ff55db84de..a6d1903a0ba 100755 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -72,7 +72,7 @@ # The short X.Y version. version = '3.0' # The full version, including alpha/beta/rc tags. -release = '3.0.rc6' +release = '3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pymc3/__init__.py b/pymc3/__init__.py index 53883f27d43..9d624e425c4 100644 --- a/pymc3/__init__.py +++ b/pymc3/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.0.rc6" +__version__ = "3.0" from .blocking import * from .distributions import * diff --git a/setup.py b/setup.py index 691c93279b2..08be1dae667 100755 --- a/setup.py +++ b/setup.py @@ -10,9 +10,9 @@ MAINTAINER_EMAIL = 'thomas.wiecki@gmail.com' AUTHOR = 'John Salvatier and Christopher Fonnesbeck' AUTHOR_EMAIL = 'chris.fonnesbeck@vanderbilt.edu' -URL = "http://github.com/pymc-devs/pymc" +URL = "http://github.com/pymc-devs/pymc3" LICENSE = "Apache License, Version 2.0" -VERSION = "3.0.rc6" +VERSION = "3.0" classifiers = ['Development Status :: 5 - Production/Stable', 'Programming Language :: Python',