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

Commit

Permalink
bump version number to v0.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
joelgrus committed Aug 21, 2019
1 parent 9d8d36a commit c8d7327
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ A clear and concise description of what you expected to happen.
**System (please complete the following information):**
- OS: [e.g. OSX, Linux]
- Python version: [if it's not 3.6.1 or later, that's probably your problem]
- AllenNLP version: [e.g. v0.8.4, or "I installed from master"]
- AllenNLP version: [e.g. v0.8.5, or "I installed from master"]
- PyTorch version: (if you installed it yourself)

**Additional context**
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,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.8.4, or "I installed from master"]
- AllenNLP version: [e.g. v0.8.5, or "I installed from master"]
- PyTorch version: (if you installed it yourself)

**Question**
Expand Down
2 changes: 1 addition & 1 deletion DEPRECATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Say you've found some old code that needs some care. You have a fix in mind, may
* Provide the version and date when we will remove the feature if applicable.
* We should support whichever is longest.
* The code should live for at least one full minor version and 3 months before removal.
* e.g., if you're committing the deprecation to master while version 0.8.4 is out, then it should live throughout version 0.9 and can first be removed in version 0.10.0.
* e.g., if you're committing the deprecation to master while version 0.8.5 is out, then it should live throughout version 0.9 and can first be removed in version 0.10.0.
* In particular, this should be at least a minor release, i.e. m.n.0.
* If this isn't possible, consult with other developers. You should have a compelling rationale.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ just run the following command to get an environment that will run on either the

```bash
mkdir -p $HOME/.allennlp/
docker run --rm -v $HOME/.allennlp:/root/.allennlp allennlp/allennlp:v0.8.4
docker run --rm -v $HOME/.allennlp:/root/.allennlp allennlp/allennlp:v0.8.5
```

You can test the Docker environment with `docker run --rm -v $HOME/.allennlp:/root/.allennlp allennlp/allennlp:v0.8.4 test-install`.
You can test the Docker environment with `docker run --rm -v $HOME/.allennlp:/root/.allennlp allennlp/allennlp:v0.8.5 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 = "8"
_REVISION = "5-unreleased"
_REVISION = "5"

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

0 comments on commit c8d7327

Please sign in to comment.