Skip to content

Commit 5bdeb8a

Browse files
committed
Make release 0.6rc5
1 parent a397d60 commit 5bdeb8a

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

NEWS.txt

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@
44
Release Notes
55
=============
66

7-
Theano 0.6rc4 (November 25th, 2013)
7+
Theano 0.6rc5 (November 25th, 2013)
88
===================================
99

1010
We recommend that everybody update to this version.
1111

1212
We plan to release 0.6 in one week if there is no problem introduced
1313
with this release candidate.
1414

15+
Theano 0.6rc4 was skipped due to a problem with pypi
16+
1517
Highlights:
1618
* Python 3.3 compatibility with buildbot test for it.
1719
* Full advanced indexing support.
@@ -278,13 +280,14 @@ Others:
278280
* Add utt.asset_allclose(a, b) to have better error message. (Frederic B.)
279281
* Better error message with compute_test_value (Frederic, reported by John Salvatier)
280282
* Stochastic order behavior fix (Frederic B.)
283+
281284
* Simpler initial graph for subtensor infer shape (Olivier D.)
282285
The optimization was doing the optimization, but this allows better reading of the graph before optimization.
283286
* Better detection of non-aligned ndarray (Frederic B.)
284287
* Update MRG multinomial gradient to the new interface (Mehdi Mirza)
285288
* Implement Image2Neibs.perform() to help debug (Frederic B.)
286289
* Remove some Theano flags from the compilation key (Frederic B.)
287-
* Make theano-nose work on executable *.py files. (Alistair Muldal)
290+
* Make theano-nose work on executable '\*.py' files. (Alistair Muldal)
288291
* Make theano-nose work with older nose version (Frederic B.)
289292
* Add extra debug info in verify_grad() (Frederic B.)
290293

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
# The short X.Y version.
5454
version = '0.6'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '0.6rc4'
56+
release = '0.6rc5'
5757

5858
# There are two options for replacing |today|: either, you set today to some
5959
# non-false value, then it is used:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
MAJOR = 0
6767
MINOR = 6
6868
MICRO = 0
69-
SUFFIX = "rc4" # Should be blank except for rc's, betas, etc.
69+
SUFFIX = "rc5" # Should be blank except for rc's, betas, etc.
7070
ISRELEASED = False
7171

7272
VERSION = '%d.%d.%d%s' % (MAJOR, MINOR, MICRO, SUFFIX)

0 commit comments

Comments
 (0)