Skip to content

Commit

Permalink
bump version number to v0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
schmmd committed Dec 3, 2018
1 parent ca7e3cf commit bf04f1d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Please first search our GitHub repository for similar questions. If you don't f
**System (please complete the following information):**
- OS: [e.g. OSX, Linux]
- Python version: [e.g. 3.6.1]
- AllenNLP version: [e.g. v0.7.1, or "I installed from master"]
- AllenNLP version: [e.g. v0.7.2, or "I installed from master"]
- PyTorch version: (if you installed it yourself)

**Question**
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ Once you have [installed Docker](https://docs.docker.com/engine/installation/)
just run the following command to get an environment that will run on either the cpu or gpu.

```bash
docker run -it -p 8000:8000 --rm allennlp/allennlp:v0.7.1
docker run -it -p 8000:8000 --rm allennlp/allennlp:v0.7.2
```

You can test the Docker environment with `docker run -it -p 8000:8000 --rm allennlp/allennlp:v0.7.1 test-install`.
You can test the Docker environment with `docker run -it -p 8000:8000 --rm allennlp/allennlp:v0.7.2 test-install`.

### Installing from source

Expand Down
2 changes: 1 addition & 1 deletion allennlp/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
_MAJOR = "0"
_MINOR = "7"
_REVISION = "2-unreleased"
_REVISION = "2"

VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)
VERSION = "{0}.{1}.{2}".format(_MAJOR, _MINOR, _REVISION)
2 changes: 1 addition & 1 deletion tutorials/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### 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.

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.7.1/tutorials.
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.7.2/tutorials.

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

Expand Down

0 comments on commit bf04f1d

Please sign in to comment.