Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.24)
set(CMAKE_CXX_STANDARD 17)
project(scl-machine VERSION 0.3.1 LANGUAGES C CXX)
project(scl-machine VERSION 0.3.2 LANGUAGES C CXX)
message(STATUS "Current project version: ${CMAKE_PROJECT_VERSION}")
cmake_policy(SET CMP0048 NEW)

Expand Down
2 changes: 2 additions & 0 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"displayName": "Debug config (Conan)",
"description": "Debug config with tests (Conan dependencies used)",
"inherits": "conan-debug",
"generator": "Ninja",
"installDir": "${sourceDir}/build/Debug/install",
"cacheVariables": {
"SC_BUILD_TESTS": true
Expand All @@ -17,6 +18,7 @@
"displayName": "Release config (Conan)",
"description": "Release config (Conan dependencies used)",
"installDir": "${sourceDir}/build/Release/install",
"generator": "Ninja",
"inherits": "conan-release"
},
{
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def _run_tests(self):
return tools.get_env("CONAN_RUN_TESTS", False)

def requirements(self):
self.requires("sc-machine/0.10.4")
self.requires("sc-machine/0.10.5")

def build_requirements(self):
self.test_requires("gtest/1.14.0")
Expand Down
7 changes: 6 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1] - 03.06.2024
## [0.3.2] - 09.11.2025

## Changed
- Bump sc-machine version to 0.10.5

## [0.3.1] - 03.06.2025

## Changed
- Use loggers from agents for all instances
Expand Down
Loading