From 494b3313b55aaefe5b8b0376dd761b75fa96a78a Mon Sep 17 00:00:00 2001 From: Steven Hartley Date: Sat, 20 Apr 2024 13:04:01 -0400 Subject: [PATCH] Update version to 0.1.2-dev (#98) Updating the version and creating a tag --- README.md | 2 +- conanfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 99e0710ff..3199a1bcd 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The library is built and packaged using conan dependency management. To add up-cpp to your conan build dependencies, simply add the following to your conanfile.txt: ``` [requires] -up-cpp/0.1 +up-cpp/0.1.2-dev [generators] CMakeDeps diff --git a/conanfile.py b/conanfile.py index d9b345343..3bce3f52d 100644 --- a/conanfile.py +++ b/conanfile.py @@ -16,7 +16,7 @@ class UpCpp(ConanFile): options = {"shared": [True, False], "fPIC": [True, False]} conan_version = None generators = "CMakeDeps", "PkgConfigDeps", "VirtualRunEnv", "VirtualBuildEnv" - version = "0.1.1-dev" + version = "0.1.2-dev" exports_sources = "CMakeLists.txt", "up-core-api/*", "include/*" ,"src/*" , "test/*", "cmake/*" options = {