diff --git a/CMakeLists.txt b/CMakeLists.txt index 2947cf6..d186c86 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.6) project(neonrvm - VERSION 0.1.1 + VERSION 0.2.0 DESCRIPTION "Machine learning library" LANGUAGES C) diff --git a/neonrvm.c b/neonrvm.c index a221b98..1445390 100644 --- a/neonrvm.c +++ b/neonrvm.c @@ -14,8 +14,8 @@ ******************************************************************************/ #define NEONRVM_VERSION_MAJOR 0 -#define NEONRVM_VERSION_MINOR 1 -#define NEONRVM_VERSION_PATCH 1 +#define NEONRVM_VERSION_MINOR 2 +#define NEONRVM_VERSION_PATCH 0 /* Defining private functions as static helps keeping library size low. */ #define NEONRVM_STATIC static diff --git a/neonrvm/__init__.py b/neonrvm/__init__.py index a628a40..f44c561 100644 --- a/neonrvm/__init__.py +++ b/neonrvm/__init__.py @@ -1,5 +1,5 @@ """Python bindings for the neonrvm machine learning library.""" -__version__ = "0.1.1" +__version__ = "0.2.0" import ctypes as ct import ctypes.util as ctut