Skip to content

Commit cd0cebb

Browse files
authored
Merge pull request #373 from ostis-apps/fix/install_cmake
feat: release 0.2.1
2 parents 6ad6c27 + ecdba55 commit cd0cebb

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.24)
22
set(CMAKE_CXX_STANDARD 17)
3-
project(nika VERSION 0.2.0 LANGUAGES C CXX)
3+
project(nika VERSION 0.2.1 LANGUAGES C CXX)
44
message(STATUS "Current project version: ${CMAKE_PROJECT_VERSION}")
55
cmake_policy(SET CMP0048 NEW)
66

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ services:
1919
condition: service_healthy
2020

2121
problem-solver:
22-
image: ostis/nika:0.2.0
22+
image: ostis/nika:0.2.1
2323
build:
2424
context: ./
2525
dockerfile: ./Dockerfile
@@ -54,7 +54,7 @@ services:
5454
- "run"
5555

5656
nika-ui:
57-
image: ostis/nika-ui:0.2.0
57+
image: ostis/nika-ui:0.2.1
5858
build:
5959
context: ./interface
6060
dockerfile: ./Dockerfile
@@ -72,7 +72,7 @@ services:
7272
- web
7373

7474
py-sc-server:
75-
image: ostis/nika-py-agents:0.2.0
75+
image: ostis/nika-py-agents:0.2.1
7676
build:
7777
context: ./
7878
dockerfile: ./problem-solver/py/Dockerfile

docs/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.1] - 04.06.2025
11+
1012
### Fixed
1113

1214
- Use DYLD_LIBRARY_PATH to run sc-machine on macOS

interface/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

interface/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nika",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "User interface for a dialog expert system",
55
"main": "index.js",
66
"scripts": {

scripts/install_cxx_problem_solver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SC_MACHINE_DESTINATION_DIR="install/sc-machine"
88
SCL_MACHINE_VERSION="0.3.1"
99
SCL_MACHINE_DESTINATION_DIR="install/scl-machine"
1010

11-
NIKA_VERSION="0.2.0"
11+
NIKA_VERSION="0.2.1"
1212
NIKA_DESTINATION_DIR="install/problem-solver"
1313

1414
get_archive_name() {

0 commit comments

Comments
 (0)