Skip to content

Commit 23081d3

Browse files
author
DEKHTIARJonathan
committed
Release 1.9.1
1 parent 1ca21f6 commit 23081d3

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.travis.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ addons:
55
apt:
66
update: false
77

8-
branches:
9-
only:
10-
- master
11-
- /\d+\.\d+(\.\d+)?(\S*)?$/
12-
138
python:
149
- "2.7"
1510
- "3.5"
@@ -20,7 +15,7 @@ env:
2015
# Backward Compatibility in insured for release less than 1 year old.
2116
# https://pypi.org/project/tensorflow/#history
2217
matrix:
23-
- _TF_VERSION=1.9.0rc1 # Remove on Apr 28, 2019
18+
- _TF_VERSION=1.9.0 # Remove on Apr 28, 2019
2419
- _TF_VERSION=1.8.0 # Remove on Apr 28, 2019
2520
- _TF_VERSION=1.7.1 # Remove on May 08, 2019
2621
- _TF_VERSION=1.7.0 # Remove on Mar 29, 2019
@@ -84,7 +79,7 @@ deploy:
8479
on:
8580
tags: true
8681
python: '3.6'
87-
condition: '$_TF_VERSION = 1.8.0'
82+
condition: '$_TF_VERSION = 1.9.0'
8883

8984
# Documentation: https://docs.travis-ci.com/user/deployment/releases/
9085
- provider: releases
@@ -97,4 +92,4 @@ deploy:
9792
on:
9893
tags: true
9994
python: '3.6'
100-
condition: '$_TF_VERSION = 1.8.0'
95+
condition: '$_TF_VERSION = 1.9.0'

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@ To release a new version, please update the changelog as followed:
8484

8585
### Contributors
8686

87+
## [1.9.1] - 2018-07-30
88+
89+
### Fixed
90+
- Issue with tensorflow 1.10.0 fixed
91+
8792

8893
## [1.9.0] - 2018-06-16
8994

@@ -243,6 +248,7 @@ To release a new version, please update the changelog as followed:
243248
### Contributors
244249
@zsdonghao @luomai @DEKHTIARJonathan
245250

246-
[Unreleased]: https://github.com/tensorlayer/tensorlayer/compare/1.9.0...master
251+
[Unreleased]: https://github.com/tensorlayer/tensorlayer/compare/1.9.1...master
252+
[1.9.1]: https://github.com/tensorlayer/tensorlayer/compare/1.9.1...1.9.0
247253
[1.9.0]: https://github.com/tensorlayer/tensorlayer/compare/1.9.0...1.8.5
248254
[1.8.5]: https://github.com/tensorlayer/tensorlayer/compare/1.8.4...1.8.5

tensorlayer/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@
5858
global_dict = {}
5959

6060
# Use the following formating: (major, minor, patch, prerelease)
61-
VERSION = (1, 9, 0, "")
61+
VERSION = (1, 9, 1, "")
6262
__shortversion__ = '.'.join(map(str, VERSION[:3]))
6363
__version__ = '.'.join(map(str, VERSION[:3])) + "".join(VERSION[3:])
6464

6565
__package_name__ = 'tensorlayer'
6666
__contact_names__ = 'TensorLayer Contributors'
67-
__contact_emails__ = '[email protected]'
67+
__contact_emails__ = '[email protected]'
6868
__homepage__ = 'http://tensorlayer.readthedocs.io/en/latest/'
6969
__repository_url__ = 'https://github.com/tensorlayer/tensorlayer'
7070
__download_url__ = 'https://github.com/tensorlayer/tensorlayer'

0 commit comments

Comments
 (0)