Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Commit 87f977a

Browse files
committed
bump version number to v0.8.1
1 parent b019196 commit 87f977a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/ISSUE_TEMPLATE/question.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Please first search our GitHub repository for similar questions. If you don't f
99
**System (please complete the following information):**
1010
- OS: [e.g. OSX, Linux]
1111
- Python version: [e.g. 3.6.1]
12-
- AllenNLP version: [e.g. v0.8.0, or "I installed from master"]
12+
- AllenNLP version: [e.g. v0.8.1, or "I installed from master"]
1313
- PyTorch version: (if you installed it yourself)
1414

1515
**Question**

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ Once you have [installed Docker](https://docs.docker.com/engine/installation/)
109109
just run the following command to get an environment that will run on either the cpu or gpu.
110110

111111
```bash
112-
docker run -it -p 8000:8000 --rm allennlp/allennlp:v0.8.0
112+
docker run -it -p 8000:8000 --rm allennlp/allennlp:v0.8.1
113113
```
114114

115-
You can test the Docker environment with `docker run -it -p 8000:8000 --rm allennlp/allennlp:v0.8.0 test-install`.
115+
You can test the Docker environment with `docker run -it -p 8000:8000 --rm allennlp/allennlp:v0.8.1 test-install`.
116116

117117
### Installing from source
118118

allennlp/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
_MAJOR = "0"
22
_MINOR = "8"
3-
_REVISION = "1-unreleased"
3+
_REVISION = "1"
44

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

tutorials/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### If you're just starting, please check out [the tutorial on our website](https://allennlp.org/tutorials). We've designed it to be the simplest and quickest way to get your toes wet with AllenNLP.
44

5-
The tutorials available here on the repo relate to the version of AllenNLP at the git commit SHA you are currently looking at (likely the HEAD commit of the master branch). If you want to see the tutorials that relate to the latest pip release, please see https://github.com/allenai/allennlp/tree/v0.8.0/tutorials.
5+
The tutorials available here on the repo relate to the version of AllenNLP at the git commit SHA you are currently looking at (likely the HEAD commit of the master branch). If you want to see the tutorials that relate to the latest pip release, please see https://github.com/allenai/allennlp/tree/v0.8.1/tutorials.
66

77
Our 2018 EMNLP tutorial is available at https://github.com/allenai/writing-code-for-nlp-research-emnlp2018.
88

0 commit comments

Comments
 (0)