aboutsummaryrefslogtreecommitdiff
path: root/conanfile.py
diff options
context:
space:
mode:
authorMarco Poletti <poletti.marco@gmail.com>2018-09-09 20:18:41 +0100
committerMarco Poletti <poletti.marco@gmail.com>2018-09-09 20:19:17 +0100
commit65909ec839158492a0a9c57cd512eb70b41314b0 (patch)
treee07f78358f256f4ffc80b0a6c87d2050ac8672d9 /conanfile.py
parentc2975cf9360cac69bbfbf0e9c5cd828a6c1f3496 (diff)
downloadgoogle-fruit-65909ec839158492a0a9c57cd512eb70b41314b0.tar.gz
Bump the version to 3.3.0.
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/conanfile.py b/conanfile.py
index 02e208e..2588f30 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -3,7 +3,7 @@ from conans import ConanFile, CMake, tools
class FruitConan(ConanFile):
name = "fruit"
- version = "3.2.0"
+ version = "3.3.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.2.0")
+ self.run("cd fruit && git checkout v3.3.0")
def build(self):
cmake = CMake(self)