From f437982df9680b13862ee45802a7fd5d9b48e578 Mon Sep 17 00:00:00 2001 From: EmixamPP Date: Wed, 29 Jan 2025 19:58:49 +0100 Subject: [PATCH 1/2] build: bump version --- CHANGELOG.md | 4 +++- meson.build | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4f635e..5f392cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [6.1.0] ### Added - Unit tests for instruction manipulations. @@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `disable` configuration field is deprecated and renamed `status` for more flexibility. It accepts the strings: `start`, `idle`, `disable`. - The `run` command only applies instructions with the `start` `status`. - The `tweak` command displays all the time the video feedback. +- Bump OpenCV to v4.11.0 +- Bump argparse to v3.2 ### Removed - `--werror` `meson` option no longer enabled by default. diff --git a/meson.build b/meson.build index b8a4444..c62ed6a 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'linux-enable-ir-emitter', 'cpp', - version: '6.0.6-dev', + version: '6.1.0', license: 'MIT', default_options: [ 'cpp_std=c++20', From 285c8011d8edd3b2b1c7e16f355c4ef335b79ef0 Mon Sep 17 00:00:00 2001 From: EmixamPP Date: Wed, 29 Jan 2025 21:01:02 +0100 Subject: [PATCH 2/2] doc(changelog): add missing date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f392cf..2ff9454 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [6.1.0] +## [6.1.0] - 2025-01-29 ### Added - Unit tests for instruction manipulations.