diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c066af..6665422 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.8] - 2025-03-21 + +This update introduces minor changes + +### Changed + - Disabled tty mode for the main execution points to prevent issues with docker environments + + ## [1.1.7] - 2025-03-14 This update introduces minor changes diff --git a/project.json b/project.json index 1d0d339..18ad6c9 100644 --- a/project.json +++ b/project.json @@ -24,7 +24,7 @@ "description": "ConfigLib is a library for reading and writing configuration files via the NCC Runtime API", "company": "Nosial", "copyright": "Copyright (c) 2022-2023 Nosial", - "version": "1.1.7", + "version": "1.1.8", "uuid": "9347259e-8e4d-11ed-85a7-fd07cf28ef35" }, "build": { @@ -119,7 +119,7 @@ "execute": { "working_directory": "%CWD%", "silent": false, - "tty": true, + "tty": false, "timeout": null, "idle_timeout": null, "target": "main" @@ -131,7 +131,7 @@ "execute": { "working_directory": "%CWD%", "silent": false, - "tty": true, + "tty": false, "timeout": null, "idle_timeout": null, "target": "main"