Skip to content

Commit f87c24b

Browse files
committed
bump version to 5.5.1
1 parent c3ac2ce commit f87c24b

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

btrdb/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
__version_info__ = {
1919
'major': 5,
2020
'minor': 5,
21-
'micro': 0,
21+
'micro': 1,
2222
'releaselevel': 'final',
23-
'serial': 8,
23+
'serial': 9,
2424
}
2525

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ def get_description_type(path=PKG_DESCRIBE):
129129
"description": DESCRIPTION,
130130
"long_description": read(PKG_DESCRIBE),
131131
"long_description_content_type": get_description_type(PKG_DESCRIBE),
132-
"classifiers": CLASSIFIERS,
133-
"keywords": KEYWORDS,
132+
"classifiers": list(CLASSIFIERS),
133+
"keywords": list(KEYWORDS),
134134
"license": LICENSE,
135135
"author": AUTHOR,
136136
"author_email": EMAIL,

tests/btrdb/test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
## Test Constants
2727
##########################################################################
2828

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

3131

3232
##########################################################################

0 commit comments

Comments
 (0)