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

Commit

Permalink
Bump version numbers to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
schmmd committed Feb 20, 2018
1 parent 741ea01 commit 50a10e7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ for developing state-of-the-art deep learning models on a wide variety of lingui
## Quickstart

The fastest way to get an environment to run AllenNLP is with Docker. Once you have [installed Docker](https://docs.docker.com/engine/installation/)
just run `docker run -it --rm allennlp/allennlp:v0.3.0` to get an environment that will run on either the cpu or gpu.
just run `docker run -it --rm allennlp/allennlp:v0.4.0` to get an environment that will run on either the cpu or gpu.

Now you can do any of the following:

Expand Down Expand Up @@ -170,7 +170,7 @@ new image on every update to the master branch. To download
the latest released from [Docker Hub](https://hub.docker.com/r/allennlp/) just run:

```bash
docker pull allennlp/allennlp:v0.3.0
docker pull allennlp/allennlp:v0.4.0
```

#### Building a Docker image
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 = "3"
_REVISION = "1-unreleased"
_MINOR = "4"
_REVISION = "0"

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.3.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.0/tutorials.

## Getting Started

Expand Down

0 comments on commit 50a10e7

Please sign in to comment.