Skip to content

Commit f135bad

Browse files
bump version to 6.5.0, changelog update
----------------------------- Co-authored-by: Ben Allred <ben.allred@qlik.com>
1 parent f07fd06 commit f135bad

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 6.5.0
4+
* Add `activate_versions` state functions [#188](https://github.com/singer-io/singer-python/pull/188)
5+
* Deprecates bookmarks.py, functions are moved to state.py
6+
37
## 6.4.0
48
* Update clear_offset to remove offset key from bookmark [#185](https://github.com/singer-io/singer-python/pull/185)
59

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import subprocess
55

66
setup(name="singer-python",
7-
version='6.4.0',
7+
version='6.5.0',
88
description="Singer.io utility library",
99
author="Stitch",
1010
classifiers=['Programming Language :: Python :: 3 :: Only'],

singer/state.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,3 @@ def clear_version(state, tap_stream_id, key):
5858

5959
def get_version(state, tap_stream_id, key, default=None):
6060
return state.get('activate_versions', {}).get(tap_stream_id, {}).get(key, default)
61-
62-

0 commit comments

Comments
 (0)