Skip to content

Commit

Permalink
v2.2.0 (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
havogt authored Dec 7, 2017
1 parent 86a5f72 commit cf0f4f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ endif()

# Serialbox version
set(SERIALBOX_VERSION_MAJOR 2)
set(SERIALBOX_VERSION_MINOR 1)
set(SERIALBOX_VERSION_PATCH 1)
set(SERIALBOX_VERSION_MINOR 2)
set(SERIALBOX_VERSION_PATCH 0)
set(SERIALBOX_VERSION_STRING
"${SERIALBOX_VERSION_MAJOR}.${SERIALBOX_VERSION_MINOR}.${SERIALBOX_VERSION_PATCH}")

Expand Down
4 changes: 2 additions & 2 deletions src/serialbox-python/serialbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

"""'Serialbox Python Interface'"""

__versioninfo__ = (2, 1, 1)
__versioninfo__ = (2, 2, 0)
__version__ = '.'.join(str(v) for v in __versioninfo__)

#
Expand All @@ -24,7 +24,7 @@
from sys import version_info

if version_info < (3, 4):
raise Exception("Serialbox requires atleast python 3.4")
raise Exception("Serialbox requires at least python 3.4")

#
# Check if numpy is available
Expand Down

0 comments on commit cf0f4f4

Please sign in to comment.