Skip to content

Commit a2ca126

Browse files
author
KP
committed
Packaging for the v3.0.19 release
1 parent a64c55b commit a2ca126

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@ Integration and unit tests are provided.
5353

5454
## Changelog
5555

56+
**v3.0.19 - 2015 Mar 25**
57+
58+
+ Add ability to authenticate with Shotgun using `session_token`.
59+
+ Add `get_session_token()` method for obtaining token to authenticate with.
60+
+ Add new `AuthenticationFault` exception type to indicate when server communication has failed due to authentication reasons.
61+
+ Add support for `SHOTGUN_API_CACERTS` environment variable to provide location of external SSL certificates file.
62+
+ Fixes and updates to various tests
63+
5664
**v3.0.18 - 2015 Mar 13**
5765

5866
+ Add ability to query the per-project visibility status for entities, fields and statuses. (requires Shotgun server >= v5.4.4)
@@ -73,7 +81,7 @@ Integration and unit tests are provided.
7381

7482
+ Fixed bug which allowed a value of None for password parameter in authenticate_human_user
7583
+ Add follow, unfollow and followers methods
76-
+ Added ability to login as human user
84+
+ Add ability to login as human user
7785
+ Ensure that webm/mp4 mime types are always available
7886
+ Updated link to video tour in README
7987
+ Fixes and updates to various tests

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='shotgun_api3',
20-
version='3.0.18',
20+
version='3.0.19',
2121
description='Shotgun Python API ',
2222
long_description=readme,
2323
author='Shotgun Software',

shotgun_api3/shotgun.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676

7777
# ----------------------------------------------------------------------------
7878
# Version
79-
__version__ = "3.0.19.dev"
79+
__version__ = "3.0.19"
8080

8181
# ----------------------------------------------------------------------------
8282
# Errors

0 commit comments

Comments
 (0)