Skip to content

Commit

Permalink
release 1.11.1 (#888)
Browse files Browse the repository at this point in the history
* release 1.11.1
  • Loading branch information
lgarithm authored Nov 15, 2018
1 parent 300be9f commit 01d541d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,27 @@ To release a new version, please update the changelog as followed:

### Changed

### Dependencies Update

### Deprecated

### Fixed

### Removed

### Security

### Contributors

## [1.11.1] - 2018-11-15

### Added

### Changed

* guide for pose estimation - flipping (PR #884)
* cv2 transform support 2 modes (PR #885)

### Dependencies Update
- pytest>=3.6,<3.9 => pytest>=3.6,<3.10 (PR #874)
- requests>=2.19,<2.20 => requests>=2.19,<2.21 (PR #874)
Expand Down
9 changes: 6 additions & 3 deletions tensorlayer/package_info.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Deep learning and Reinforcement learning library for Researchers and Engineers."""

MAJOR = 1
MINOR = 11
PATCH = 1
PRE_RELEASE = ''
# Use the following formatting: (major, minor, patch, prerelease)
VERSION = (1, 11, 0, '')
VERSION = (MAJOR, MINOR, PATCH, PRE_RELEASE)

__shortversion__ = '.'.join(map(str, VERSION[:3]))
__version__ = '.'.join(map(str, VERSION[:3])) + ''.join(VERSION[3:])

Expand Down

0 comments on commit 01d541d

Please sign in to comment.