From ece0f7218ce590ed6d4185326a31cb44bc451200 Mon Sep 17 00:00:00 2001 From: Marco Poletti Date: Wed, 12 Sep 2018 20:50:28 +0100 Subject: [PATCH] Bump the version to 3.4.0. --- CMakeLists.txt | 2 +- conanfile.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 94702636..d77de0cc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -95,7 +95,7 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}/include) set(INSTALL_INCLUDE_DIR include/fruit CACHE PATH "Installation directory for headers") set(INSTALL_LIBRARY_DIR lib CACHE PATH "Installation directory for libraries") -set(FRUIT_VERSION "3.3.0") +set(FRUIT_VERSION "3.4.0") add_subdirectory(configuration) add_subdirectory(src) diff --git a/conanfile.py b/conanfile.py index 2588f301..8663191c 100644 --- a/conanfile.py +++ b/conanfile.py @@ -3,7 +3,7 @@ class FruitConan(ConanFile): name = "fruit" - version = "3.3.0" + version = "3.4.0" license = "Apache" url = "https://github.com/google/fruit" description = "C++ dependency injection framework" @@ -14,7 +14,7 @@ class FruitConan(ConanFile): def source(self): self.run("git clone https://github.com/google/fruit") - self.run("cd fruit && git checkout v3.3.0") + self.run("cd fruit && git checkout v3.4.0") def build(self): cmake = CMake(self)