Skip to content

Commit

Permalink
Bump the version to 3.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
poletti-marco committed Sep 12, 2018
1 parent 88a5230 commit ece0f72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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)
Expand Down

0 comments on commit ece0f72

Please sign in to comment.