Skip to content

Commit

Permalink
Update CHANGELOG.md.
Browse files Browse the repository at this point in the history
Update version.hpp.
Fix conanfile.py.
  • Loading branch information
rturrado committed Jan 12, 2024
1 parent 0dc7cc6 commit e365950
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [ 1.0.0 ] - [ 2024-01-12 ]
## [ 1.0.1 ] - [ 2024-01-12 ]

### Added
-

### Changed
- Minimal changes in order to allow creation of a func-gen Conan Center package
- Minimal changes in order to allow creation of a tree-gen Conan Center package

### Removed
-
8 changes: 4 additions & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def build_requirements(self):
def requirements(self):
self.requires("fmt/10.1.1")
self.requires("range-v3/0.12.0")
#if self.options.build_tests:
self.requires("gtest/1.14.0")
if self.options.build_tests:
self.requires("gtest/1.14.0")

def config_options(self):
if self.settings.os == "Windows":
Expand All @@ -75,8 +75,8 @@ def layout(self):
self.cpp.build.libdirs = ["."]

def generate(self):
#deps = CMakeDeps(self)
#deps.generate()
deps = CMakeDeps(self)
deps.generate()
tc = CMakeToolchain(self)
tc.variables["ASAN_ENABLED"] = self.options.asan_enabled
tc.variables["TREE_GEN_BUILD_TESTS"] = self.options.build_tests
Expand Down
4 changes: 2 additions & 2 deletions include/version.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pragma once

#define TREE_GEN_VERSION "1.0.0"
#define TREE_GEN_RELEASE_YEAR "2023"
#define TREE_GEN_VERSION "1.0.1"
#define TREE_GEN_RELEASE_YEAR "2024"

0 comments on commit e365950

Please sign in to comment.