From 628bcb75f568bf1bc9e2d76bc8bede454bfe98e6 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Thu, 4 May 2017 20:33:31 -0400 Subject: [PATCH] Realistically, master has diverged significantly from 2.2.x. So we should just go ahead and call it 3.0.x. --- src/mlpack/core/util/version.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mlpack/core/util/version.hpp b/src/mlpack/core/util/version.hpp index a921444257..f0f8ac36a4 100644 --- a/src/mlpack/core/util/version.hpp +++ b/src/mlpack/core/util/version.hpp @@ -16,14 +16,14 @@ // The version of mlpack. If this is a git repository, this will be a version // with higher number than the most recent release. -#define MLPACK_VERSION_MAJOR 2 -#define MLPACK_VERSION_MINOR 2 +#define MLPACK_VERSION_MAJOR 3 +#define MLPACK_VERSION_MINOR 0 #define MLPACK_VERSION_PATCH "x" // Reverse compatibility; these macros will be removed in future versions of // mlpack (3.0.0 and newer)! -#define __MLPACK_VERSION_MAJOR 2 -#define __MLPACK_VERSION_MINOR 2 +#define __MLPACK_VERSION_MAJOR 3 +#define __MLPACK_VERSION_MINOR 0 #define __MLPACK_VERSION_PATCH "x" // The name of the version (for use by --version).