Skip to content

Commit 01d541d

Browse files
authored
release 1.11.1 (#888)
* release 1.11.1
1 parent 300be9f commit 01d541d

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,27 @@ To release a new version, please update the changelog as followed:
7373

7474
### Changed
7575

76+
### Dependencies Update
77+
78+
### Deprecated
79+
80+
### Fixed
81+
82+
### Removed
83+
84+
### Security
85+
86+
### Contributors
87+
88+
## [1.11.1] - 2018-11-15
89+
90+
### Added
91+
92+
### Changed
93+
94+
* guide for pose estimation - flipping (PR #884)
95+
* cv2 transform support 2 modes (PR #885)
96+
7697
### Dependencies Update
7798
- pytest>=3.6,<3.9 => pytest>=3.6,<3.10 (PR #874)
7899
- requests>=2.19,<2.20 => requests>=2.19,<2.21 (PR #874)

tensorlayer/package_info.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
31
"""Deep learning and Reinforcement learning library for Researchers and Engineers."""
42

3+
MAJOR = 1
4+
MINOR = 11
5+
PATCH = 1
6+
PRE_RELEASE = ''
57
# Use the following formatting: (major, minor, patch, prerelease)
6-
VERSION = (1, 11, 0, '')
8+
VERSION = (MAJOR, MINOR, PATCH, PRE_RELEASE)
9+
710
__shortversion__ = '.'.join(map(str, VERSION[:3]))
811
__version__ = '.'.join(map(str, VERSION[:3])) + ''.join(VERSION[3:])
912

0 commit comments

Comments
 (0)