Skip to content

Commit e072849

Browse files
export singer.state functions from main module
1 parent d4a7449 commit e072849

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

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

3+
## 6.5.1
4+
* Export singer.state functions from singer [#190](https://github.com/singer-io/singer-python/pull/190)
5+
36
## 6.5.0
47
* Add `activate_versions` state functions [#188](https://github.com/singer-io/singer-python/pull/188)
58
* Deprecates bookmarks.py, functions are moved to state.py

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.5.0',
7+
version='6.5.1',
88
description="Singer.io utility library",
99
author="Stitch",
1010
classifiers=['Programming Language :: Python :: 3 :: Only'],

singer/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
)
6262
from singer.schema import Schema
6363

64-
from singer.bookmarks import (
64+
from singer.state import (
6565
write_bookmark,
6666
get_bookmark,
6767
clear_bookmark,
@@ -71,6 +71,9 @@
7171
get_offset,
7272
set_currently_syncing,
7373
get_currently_syncing,
74+
write_version,
75+
clear_version,
76+
get_version,
7477
)
7578

7679
from singer.exceptions import (

0 commit comments

Comments
 (0)