Skip to content

Commit d2d5c48

Browse files
increments version number to v5.5
1 parent abfc914 commit d2d5c48

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

btrdb/version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717

1818
__version_info__ = {
1919
'major': 5,
20-
'minor': 4,
21-
'micro': 2,
20+
'minor': 5,
21+
'micro': 0,
2222
'releaselevel': 'final',
23-
'serial': 7,
23+
'serial': 8,
2424
}
2525

2626
##########################################################################

tests/btrdb/test_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
## Test Constants
2727
##########################################################################
2828

29-
EXPECTED_VERSION = "5.4.2"
29+
EXPECTED_VERSION = "5.5"
3030

3131

3232
##########################################################################
@@ -114,4 +114,4 @@ def test_connect_with_env(self, mock_conn, mock_credentials_by_profile):
114114
apikey = "abcd"
115115
os.environ[BTRDB_API_KEY] = apikey
116116
btrdb = connect()
117-
mock_conn.assert_called_once_with(address, apikey=apikey)
117+
mock_conn.assert_called_once_with(address, apikey=apikey)

0 commit comments

Comments
 (0)