Skip to content

Commit

Permalink
Prepare release 0.7rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
lamblin committed Mar 5, 2015
1 parent b52069a commit 7dcc9b5
Show file tree
Hide file tree
Showing 6 changed files with 1,054 additions and 1,041 deletions.
1,040 changes: 1,040 additions & 0 deletions HISTORY.txt

Large diffs are not rendered by default.

1,041 changes: 7 additions & 1,034 deletions NEWS.txt

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@

# General substitutions.
project = 'Theano'
copyright = '2008--2013, LISA lab'
copyright = '2008--2015, LISA lab'

# The default replacements for |version| and |release|, also used in various
# other places throughout the built documents.
#
# The short X.Y version.
version = '0.6'
version = '0.7'
# The full version, including alpha/beta/rc tags.
release = '0.6'
release = '0.7rc1'

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
Expand Down
2 changes: 1 addition & 1 deletion doc/library/config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ 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'

Default: 'None'
Default: '0.6'

When we fix a Theano bug that generated bad results under some
circumstances, we also make Theano raise a warning when it encounters
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
AUTHOR_EMAIL = "theano-dev@googlegroups.com"
PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"]
MAJOR = 0
MINOR = 6
MINOR = 7
MICRO = 0
SUFFIX = "" # Should be blank except for rc's, betas, etc.
SUFFIX = "rc1" # Should be blank except for rc's, betas, etc.
ISRELEASED = False

VERSION = '%d.%d.%d%s' % (MAJOR, MINOR, MICRO, SUFFIX)
Expand Down
2 changes: 1 addition & 1 deletion theano/configdefaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def safe_no_home(home):
"bugs found after that version. "
"Warning for specific bugs can be configured with specific "
"[warn] flags."),
EnumStr('0.5', 'None', 'all', '0.3', '0.4', '0.4.1', '0.6',
EnumStr('0.6', 'None', 'all', '0.3', '0.4', '0.4.1', '0.5', '0.7',
allow_override=False),
in_c_key=False)

Expand Down

0 comments on commit 7dcc9b5

Please sign in to comment.