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.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
schmmd committed May 24, 2018
1 parent 66da4ee commit d711e40
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ isolation and consistency, and also makes it easy to distribute your
environment to a compute cluster.

Once you have [installed Docker](https://docs.docker.com/engine/installation/)
just run `docker run -it -p 8000:8000 --rm allennlp/allennlp:v0.4.2` to get an environment that will run on either the cpu or gpu.
just run `docker run -it -p 8000:8000 --rm allennlp/allennlp:v0.4.3` to get an environment that will run on either the cpu or gpu.

You can now test your installation with `./scripts/verify.py`.

Expand Down
4 changes: 2 additions & 2 deletions allennlp/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
_MAJOR = "0"
_MINOR = "5"
_REVISION = "0-unreleased"
_MINOR = "4"
_REVISION = "3"

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
@@ -1,6 +1,6 @@
# Tutorials

These tutorials 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.4.0/tutorials.
These tutorials 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.4.3/tutorials.

## Getting Started

Expand Down

0 comments on commit d711e40

Please sign in to comment.