Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Commit

Permalink
version bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulbot committed Jan 8, 2019
1 parent 7929f70 commit 4d18c28
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pip install mediameter-cliff
To test it out, hit this url in a browser and you should get some JSON back:

```
http://localhost:8080/cliff-2.4.1/parse/text?q=This is some text about New York City, and maybe about Accra as well, and maybe Boston as well.
http://localhost:8080/cliff-2.4.2/parse/text?q=This is some text about New York City, and maybe about Accra as well, and maybe Boston as well.
```

Of course, when you use this in a script you should do an HTTP POST, not a GET!
Expand Down Expand Up @@ -138,7 +138,7 @@ Response:
},
"status": "ok",
"milliseconds": 4004,
"version": "2.4.1"
"version": "2.4.2"
}
```

Expand All @@ -151,7 +151,7 @@ A convenience method to help you lookup places by their geonames ids.
|id|(required)|The unique id that identifies a place in the [geonames.org](geonames.org) database|

Example Query:
`http://localhost:8080/cliff-2.4.1/geonames?id=4930956`
`http://localhost:8080/cliff-2.4.2/geonames?id=4930956`

Response:
```json
Expand Down Expand Up @@ -209,7 +209,7 @@ Response:
"population": 617594
},
"status": "ok",
"version": "2.4.1"
"version": "2.4.2"
}
```

Expand All @@ -222,7 +222,7 @@ A convenience method to help you get the raw text of the story from a URL. This
|url|(required)|The url of a news story to extract the text of|

Example Query:
`http://localhost:8080/cliff-2.4.1/extract?url=http://www.theonion.com/articles/woman-thinks-she-can-just-waltz-back-into-work-aft,38349/`
`http://localhost:8080/cliff-2.4.2/extract?url=http://www.theonion.com/articles/woman-thinks-she-can-just-waltz-back-into-work-aft,38349/`

Response:
```json
Expand All @@ -234,7 +234,7 @@ Response:
},
"status": "ok",
"milliseconds": 625,
"version": "2.4.1"
"version": "2.4.2"
}
```

Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>CLIFF</artifactId>
<groupId>org.mediameter</groupId>
<version>2.4.1</version>
<version>2.4.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.mediameter</groupId>
<artifactId>CLIFF</artifactId>
<packaging>pom</packaging>
<version>2.4.1</version>
<version>2.4.2</version>
<modules>
<module>common</module>
<module>webapp</module>
Expand Down
4 changes: 2 additions & 2 deletions stanford-entity-extractor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>CLIFF</artifactId>
<groupId>org.mediameter</groupId>
<version>2.4.1</version>
<version>2.4.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -14,7 +14,7 @@
<dependency>
<groupId>org.mediameter</groupId>
<artifactId>common</artifactId>
<version>2.4.1</version>
<version>2.4.2</version>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
Expand Down
6 changes: 3 additions & 3 deletions webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>CLIFF</artifactId>
<groupId>org.mediameter</groupId>
<version>2.4.1</version>
<version>2.4.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -16,7 +16,7 @@
<dependency>
<groupId>org.mediameter</groupId>
<artifactId>common</artifactId>
<version>2.4.1</version>
<version>2.4.2</version>
</dependency>
<dependency>
<groupId>com.bericotech</groupId>
Expand Down Expand Up @@ -76,7 +76,7 @@
<dependency>
<groupId>org.mediameter</groupId>
<artifactId>stanford-entity-extractor</artifactId>
<version>2.4.1</version>
<version>2.4.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 4d18c28

Please sign in to comment.