From 052353ed62e3a54fd7b39a660e65fc5dd2f91c7d Mon Sep 17 00:00:00 2001 From: Matt Gardner Date: Wed, 25 Sep 2019 06:47:31 -0700 Subject: [PATCH] bump version number to v0.9.0 --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/question.md | 2 +- DEPRECATION.md | 2 +- README.md | 4 ++-- allennlp/version.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 16a90e821ce..41d399bcbfa 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -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.5, or "I installed from master"] + - AllenNLP version: [e.g. v0.9.0, or "I installed from master"] - PyTorch version: (if you installed it yourself) **Additional context** diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index 0d69eb0fd29..9cecf8654e3 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -14,7 +14,7 @@ If you don't find a similar example and you would like to ask a question on GitH **System (please complete the following information):** - OS: [e.g. OSX, Linux] - Python version: [e.g. 3.6.1] - - AllenNLP version: [e.g. v0.8.5, or "I installed from master"] + - AllenNLP version: [e.g. v0.9.0, or "I installed from master"] - PyTorch version: (if you installed it yourself) **Question** diff --git a/DEPRECATION.md b/DEPRECATION.md index 39e4596d358..c0a3dd6323f 100644 --- a/DEPRECATION.md +++ b/DEPRECATION.md @@ -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.5 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.9.0 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. diff --git a/README.md b/README.md index a548ab14bab..f2e7647d2c8 100644 --- a/README.md +++ b/README.md @@ -111,10 +111,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.5 + docker run --rm -v $HOME/.allennlp:/root/.allennlp allennlp/allennlp:v0.9.0 ``` -You can test the Docker environment with `docker run --rm -v $HOME/.allennlp:/root/.allennlp allennlp/allennlp:v0.8.5 test-install`. +You can test the Docker environment with `docker run --rm -v $HOME/.allennlp:/root/.allennlp allennlp/allennlp:v0.9.0 test-install`. ### Installing from source diff --git a/allennlp/version.py b/allennlp/version.py index fd67e6899bc..189cad1340a 100644 --- a/allennlp/version.py +++ b/allennlp/version.py @@ -1,6 +1,6 @@ _MAJOR = "0" _MINOR = "9" -_REVISION = "0-unreleased" +_REVISION = "0" VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR) VERSION = "{0}.{1}.{2}".format(_MAJOR, _MINOR, _REVISION)