Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/OpenNMT/CTranslate2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Klein <guillaume.klein@systrangroup.com>2019-10-18 16:48:03 +0300
committerGuillaume Klein <guillaume.klein@systrangroup.com>2019-10-18 16:48:38 +0300
commit8afcba56eef059b4ff88ca790c9761db518b3c88 (patch)
tree549bfff3f50fc2e74f5a2904f92a955afff6b8a1
parent4421ff8d1a13d6caf7c6b5a900dbecd69a7a08c5 (diff)
Bump versionv1.1.0
-rw-r--r--CHANGELOG.md17
-rw-r--r--python/setup.py2
2 files changed, 18 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8d098080..931913aa 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,23 @@
### Fixes and improvements
+## [v1.1.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v1.1.0) (2019-10-18)
+
+### New features
+
+* New Docker images: `latest-ubuntu16-gpu`, `latest-ubuntu18`, `latest-ubuntu18-gpu`
+* Support OpenNMT-tf Transformer models with shared embeddings
+* Update to TensorRT 6
+* Make OpenMP runtime configurable
+
+### Fixes and improvements
+
+* Reduce the size of models with shared weights on disk and in memory
+* Shared words vocabulary is no longer duplicated on disk and in memory
+* Improve performance of translation with a vocabulary map on GPU
+* Statically link against Intel MKL
+* Remove some implementation details from public headers
+
## [v1.0.1](https://github.com/OpenNMT/CTranslate2/releases/tag/v1.0.1) (2019-10-08)
### Fixes and improvements
diff --git a/python/setup.py b/python/setup.py
index 60df47c9..f4f44e12 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -29,7 +29,7 @@ ctranslate2_module = Extension(
setup(
name="ctranslate2",
- version="1.0.1",
+ version="1.1.0",
packages=find_packages(exclude=["bin"]),
ext_modules=[ctranslate2_module],
install_requires=[