Skip to content

Commit

Permalink
Bump version to 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkgr committed Dec 5, 2018
1 parent 8638f4c commit b89f687
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@ There are three different ways to get started with SP. Each has its own document
* [CLI](cli/README.md): This contains the command line interface to SP. That's most useful for batch processing.
* [Core](core/README.md): This contains SP as a library. It has all the extraction code, plus training and evaluation. Both server and CLI use this to do the actual work.

Alternatively, you can run the **docker image**: `docker run -p 8080:8080 --rm allenai/scienceparse:2.0.1`
Alternatively, you can run the **docker image**: `docker run -p 8080:8080 --rm allenai/scienceparse:2.0.3`

## How to include into your own project

The current version is `2.0.1`. If you want to include it in your own project, use this:
The current version is `2.0.3`. If you want to include it in your own project, use this:

For SBT:
```
libraryDependencies += "org.allenai" %% "science-parse" % "2.0.1"
libraryDependencies += "org.allenai" %% "science-parse" % "2.0.3"
```

For Maven:
```
<dependency>
<groupId>org.allenai</groupId>
<artifactId>science-parse_2.11</artifactId>
<version>2.0.1</version>
<version>2.0.3</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "2.0.2-SNAPSHOT"
version in ThisBuild := "2.0.3"

0 comments on commit b89f687

Please sign in to comment.