Skip to content

Commit 2b164c8

Browse files
authored
Release version 0.1.1 (#293)
* Release version 0.1.1 * Update change log * Minor updates
1 parent 680e598 commit 2b164c8

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

CHANGELOG.md

+39
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,45 @@
66

77
### Fixes
88

9+
## [v0.1.1](https://github.com/asyml/texar-pytorch/releases/tag/v0.1.0) (2020-02-07)
10+
11+
### New features
12+
13+
* Support PyTorch 1.3. ([#249](https://github.com/asyml/texar-pytorch/pull/249))
14+
* Add `T5` modules (`T5Encoder`, `T5Decoder`, and `T5EncoderDecoder`). ([#280](https://github.com/asyml/texar-pytorch/pull/280))
15+
* Add `T5Tokenizer`. ([#283](https://github.com/asyml/texar-pytorch/pull/283))
16+
* Support PyTorch 1.4. ([#291](https://github.com/asyml/texar-pytorch/pull/291))
17+
18+
### Feature improvements
19+
20+
* Refactor the interface of GPT2 modules. ([#238](https://github.com/asyml/texar-pytorch/pull/238))
21+
* Support `gpt2-xl` checkpoint file in GPT2 modules. ([#242](https://github.com/asyml/texar-pytorch/pull/242))
22+
* Add code coverage check in CI. ([#245](https://github.com/asyml/texar-pytorch/pull/245))
23+
* Update the vocabulary files of RoBERTa modules. ([#255](https://github.com/asyml/texar-pytorch/pull/255))
24+
* Disable `codecov/patch` check in CI. ([#265](https://github.com/asyml/texar-pytorch/pull/265))
25+
* Provide option to freeze the embedding parameters. ([#271](https://github.com/asyml/texar-pytorch/pull/271))
26+
* Add `encode_text_for_generation` function in `XLNetTokenizer`. ([#278](https://github.com/asyml/texar-pytorch/pull/278))
27+
* Use warning instead of error in `map_token_to_id` function. ([#285](https://github.com/asyml/texar-pytorch/pull/285))
28+
* Add copyright header to unit tests. ([#287](https://github.com/asyml/texar-pytorch/pull/287))
29+
* Remove duplicated `pytest` in CI. ([#289](https://github.com/asyml/texar-pytorch/pull/289))
30+
* Update the versions of `pylint`, `flake8`, and `mypy` in CI. ([#292](https://github.com/asyml/texar-pytorch/pull/292))
31+
32+
### Fixes
33+
34+
* Fix the documentation issues in `SentencePieceTokenizer`. ([#236](https://github.com/asyml/texar-pytorch/pull/236))
35+
* Fix the bugs in RoBERTa checkpoint file loading procedure. ([#241](https://github.com/asyml/texar-pytorch/pull/241))
36+
* Fix the documentation issues in `Executor`. ([#244](https://github.com/asyml/texar-pytorch/pull/244))
37+
* Fix the documentation issues in `gpt-2` example. ([#250](https://github.com/asyml/texar-pytorch/pull/250))
38+
* Fix the bugs in `bidirectional_dynamic_rnn` and `dynamic_rnn` functions. ([#252](https://github.com/asyml/texar-pytorch/pull/252))
39+
* Fix the bugs in `vae_text` example. ([#253](https://github.com/asyml/texar-pytorch/pull/253))
40+
* Fix the bugs in `sentence_classifier` example. ([#262](https://github.com/asyml/texar-pytorch/pull/262))
41+
* Fix the path error when installing `texar-pytorch` in Windows. ([#268](https://github.com/asyml/texar-pytorch/pull/268))
42+
* Fix the bugs in `XLNetTokenizer`. ([#273](https://github.com/asyml/texar-pytorch/pull/273))
43+
* Fix the bugs in `download_checkpoint` function. ([#274](https://github.com/asyml/texar-pytorch/pull/274))
44+
* Fix the bugs in google drive downloading function. ([#275](https://github.com/asyml/texar-pytorch/pull/275))
45+
* Fix the bugs in the unit test of `GPT2Decoder`. ([#288](https://github.com/asyml/texar-pytorch/pull/288))
46+
* Fix the documentation issues in `Decoder` module. ([#290](https://github.com/asyml/texar-pytorch/pull/290))
47+
948
## [v0.1.0](https://github.com/asyml/texar-pytorch/releases/tag/v0.1.0) (2019-10-15)
1049

1150
The first formal release of Texar-PyTorch

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setuptools.setup(
1919
name="texar-pytorch",
20-
version="0.1.1-unreleased",
20+
version="0.1.1",
2121
url="https://github.com/asyml/texar-pytorch",
2222

2323
description="Toolkit for Machine Learning and Text Generation",

texar/torch/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
_MAJOR = "0"
1616
_MINOR = "1"
17-
_REVISION = "1-unreleased"
17+
_REVISION = "1"
1818

1919
VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)
2020
VERSION = "{0}.{1}.{2}".format(_MAJOR, _MINOR, _REVISION)

0 commit comments

Comments
 (0)