From a5814d0c5cd802bcf5978377010de25e561febb4 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Tue, 7 Apr 2020 09:17:16 -0400 Subject: [PATCH] Update version to next release version. --- CMakeLists.txt | 8 ++++---- src/mlpack/core/util/version.hpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4bb2eef1ba..4dc6d0beb8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -359,14 +359,14 @@ endif () find_package(Ensmallen 2.10.0) if (NOT ENSMALLEN_FOUND) if (DOWNLOAD_ENSMALLEN) - file(DOWNLOAD http://www.ensmallen.org/files/ensmallen-2.12.0.tar.gz - "${CMAKE_BINARY_DIR}/deps/ensmallen-2.12.0.tar.gz" + file(DOWNLOAD http://www.ensmallen.org/files/ensmallen-latest.tar.gz + "${CMAKE_BINARY_DIR}/deps/ensmallen-latest.tar.gz" STATUS ENS_DOWNLOAD_STATUS_LIST LOG ENS_DOWNLOAD_LOG SHOW_PROGRESS) list(GET ENS_DOWNLOAD_STATUS_LIST 0 ENS_DOWNLOAD_STATUS) if (ENS_DOWNLOAD_STATUS EQUAL 0) execute_process(COMMAND ${CMAKE_COMMAND} -E - tar xzf "${CMAKE_BINARY_DIR}/deps/ensmallen-2.12.0.tar.gz" + tar xzf "${CMAKE_BINARY_DIR}/deps/ensmallen-latest.tar.gz" WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/deps/") # Get the name of the directory. @@ -374,7 +374,7 @@ if (NOT ENSMALLEN_FOUND) "${CMAKE_BINARY_DIR}/deps/ensmallen-[0-9]*.[0-9]*.[0-9]*") # list(FILTER) is not available on 3.5 or older, but try to keep # configuring without filtering the list anyway (it might work if only - # the file ensmallen-2.12.0.tar.gz is present. + # the file ensmallen-latest.tar.gz is present. if (${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.6.0") list(FILTER ENS_DIRECTORIES EXCLUDE REGEX "ensmallen-.*\.tar\.gz") endif () diff --git a/src/mlpack/core/util/version.hpp b/src/mlpack/core/util/version.hpp index 2f1914e16d..a1c421d0fa 100644 --- a/src/mlpack/core/util/version.hpp +++ b/src/mlpack/core/util/version.hpp @@ -18,7 +18,7 @@ // with higher number than the most recent release. #define MLPACK_VERSION_MAJOR 3 #define MLPACK_VERSION_MINOR 3 -#define MLPACK_VERSION_PATCH 0 +#define MLPACK_VERSION_PATCH 1 // The name of the version (for use by --version). namespace mlpack {