diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ca3c0a..b628405 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v0.6.17 + +* Removed unnecessary dependencies of the SDK, bumped Pyarrow to v10. + + ## v0.6.16 * Expanded the retry mechanism for HTTP failures raised as `ConnectionError`. diff --git a/railib/__init__.py b/railib/__init__.py index 95c8813..c4de3da 100644 --- a/railib/__init__.py +++ b/railib/__init__.py @@ -12,5 +12,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version_info__ = (0, 6, 16) +__version_info__ = (0, 6, 17) __version__ = ".".join(map(str, __version_info__))