提交 e0167f24 authored 作者: Arnaud Bergeron's avatar Arnaud Bergeron

Modifications for the 1.0.4 release

上级 b37f333b
......@@ -5,6 +5,29 @@
Old Release Notes
=================
Theano 1.0.3 (20th of September 2018)
=====================================
This is a maintenance release of Theano, version ``1.0.3``, with no
new features, but some important bug fixes.
We recommend that everybody update to this version.
Highlights (since 1.0.2):
- Theano is now compatible with Python 3.7
- Broadcasting for sparse dot products works correctly
- Subtensor grads do not return int anymore
A total of 5 people contributed to this release since ``1.0.2``:
- Frederic Bastien
- Arnaud Bergeron
- Dmitry Mottl
- Adrian Seyboldt
- Thomas Wiecki
Theano 1.0.2 (23rd of May, 2018)
====================================
......
......@@ -2,24 +2,27 @@
Release Notes
=============
Theano 1.0.3 (20th of September 2018)
Theano 1.0.4 (16th of January 2019)
=====================================
This is a maintenance release of Theano, version ``1.0.3``, with no
This is a maintenance release of Theano, version ``1.0.4``, with no
new features, but some important bug fixes.
We recommend that everybody update to this version.
Highlights (since 1.0.2):
Highlights (since 1.0.3):
- Theano is now compatible with Python 3.7
- Broadcasting for sparse dot products works correctly
- Subtensor grads do not return int anymore
- Theano is now compatible with NumPy 1.16.
A total of 5 people contributed to this release since ``1.0.2``:
A total of 10 people contributed to this release since ``1.0.3``:
- wonghang
- Frederic Bastien
- Arnaud Bergeron
- Dmitry Mottl
- Adrian Seyboldt
- Thomas Wiecki
- Duc Nguyen
- Andrew Nelson
- Björn Linse
- Luis Mario Domenzain
- Rebecca N. Palmer
- Luciano Paz
- Dan Foreman-Mackey
......@@ -3,7 +3,7 @@
LICENSE
=======
Copyright (c) 2008--2018, Theano Development Team
Copyright (c) 2008--2019, Theano Development Team
All rights reserved.
Contains code from NumPy, Copyright (c) 2005-2016, NumPy Developers.
......
......@@ -67,7 +67,7 @@ master_doc = 'index'
# General substitutions.
project = 'Theano'
copyright = '2008--2018, LISA lab'
copyright = '2008--2019, LISA lab'
# The default replacements for |version| and |release|, also used in various
# other places throughout the built documents.
......
......@@ -50,7 +50,7 @@ Install the latest stable version of Theano with:
If you encountered any trouble, head to the :ref:`troubleshooting` page.
The latest stable version of Theano is ``1.0.1`` (tagged with ``rel-1.0.1``).
The latest stable version of Theano is ``1.0.4`` (tagged with ``rel-1.0.4``).
libgpuarray
:::::::::::
......
......@@ -567,7 +567,8 @@ import theano and print the config variable, as in:
String value: ``'None'``, ``'all'``, ``'0.3'``, ``'0.4'``, ``'0.4.1'``,
``'0.5'``, ``'0.6'``, ``'0.7'``, ``'0.8'``, ``'0.8.1'``, ``'0.8.2'``,
``'0.9'``, ``'0.10'``, ``'1.0'``, ``'1.0.1'``, ``'1.0.2'``, ``'1.0.3'``
``'0.9'``, ``'0.10'``, ``'1.0'``, ``'1.0.1'``, ``'1.0.2'``, ``'1.0.3'``,
``'1.0.4'``
Default: ``'0.9'``
......
......@@ -752,7 +752,7 @@ AddConfigVar('warn.ignore_bug_before',
"[warn] flags."),
EnumStr('0.9', 'None', 'all', '0.3', '0.4', '0.4.1', '0.5', '0.6',
'0.7', '0.8', '0.8.1', '0.8.2', '0.9', '0.10', '1.0',
'1.0.1', '1.0.2', '1.0.3',
'1.0.1', '1.0.2', '1.0.3', '1.0.4',
allow_override=False),
in_c_key=False)
......
......@@ -2,7 +2,7 @@ from __future__ import absolute_import, print_function, division
from theano._version import get_versions
FALLBACK_VERSION = "1.0.3+unknown"
FALLBACK_VERSION = "1.0.4+unknown"
info = get_versions()
if info['error'] is not None:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论