Skip to content

Commit 1a1334b

Browse files
committedMar 8, 2020
v1.1.0
1 parent e39d78b commit 1a1334b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

Diff for: ‎dbots/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__author__ = 'Snazzah'
33
__license__ = 'MIT'
44
__copyright__ = 'Copyright 2020 Snazzah'
5-
__version__ = '1.0.1'
5+
__version__ = '1.1.0'
66

77
from collections import namedtuple
88
import logging
@@ -15,7 +15,7 @@
1515

1616
VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial')
1717
version_info = VersionInfo(
18-
major = 1, minor = 0, micro = 1,
18+
major = 1, minor = 1, micro = 0,
1919
releaselevel = 'final', serial = 0
2020
)
2121

Diff for: ‎docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Snazzah'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '1.0.1'
25+
release = '1.1.0'
2626

2727

2828
# -- General configuration ---------------------------------------------------

0 commit comments

Comments
 (0)
Please sign in to comment.