Skip to content

Commit f78be9d

Browse files
committed
Merge pull request #42 from rosette-api/RCB-389_Release_1_1
Release 1.1
2 parents 2d35a82 + 2570969 commit f78be9d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/relationships.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
def run(key, altUrl='https://api.rosette.com/rest/v1/'):
1515
# Create an API instance
1616
api = API(user_key=key, service_url=altUrl)
17-
relationships_text_data = "Bill Murray is in the new Ghostbusters film!"
17+
relationships_text_data = "The Ghostbusters movie was filmed in Boston."
1818
params = RelationshipsParameters()
1919
params["content"] = relationships_text_data
2020
params["options"] = {"accuracyMode": "PRECISION"}

rosette/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
limitations under the License.
1717
"""
1818

19-
__version__ = '1.0.1'
19+
__version__ = '1.1.0'

rosette/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from datetime import datetime
3030
import requests
3131

32-
_BINDING_VERSION = "1.0"
32+
_BINDING_VERSION = "1.1"
3333
_GZIP_BYTEARRAY = bytearray([0x1F, 0x8b, 0x08])
3434

3535
_IsPy3 = sys.version_info[0] == 3

0 commit comments

Comments
 (0)