From 89142f8997cbb0502c3c67dd4c838882074ee107 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Montan=CC=83ana?= Date: Sat, 19 Jul 2025 22:47:32 +0200 Subject: [PATCH] Update version number --- CHANGELOG.md | 10 +++++++++- CMakeLists.txt | 2 +- tests/TestBayesModels.cc | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96618c6..da87b74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,15 @@ 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] +## [1.2.1] - 2025-07-19 + +### Internal + +- Update Libtorch to version 2.7.1 +- Update libraries versions: + - mdlp: 2.1.1 + - Folding: 1.1.2 + - ArffFiles: 1.2.1 ## [1.2.0] - 2025-07-08 diff --git a/CMakeLists.txt b/CMakeLists.txt index c164e42..ff301f4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.27) project(bayesnet - VERSION 1.2.0 + VERSION 1.2.1 DESCRIPTION "Bayesian Network and basic classifiers Library." HOMEPAGE_URL "https://github.com/rmontanana/bayesnet" LANGUAGES CXX diff --git a/tests/TestBayesModels.cc b/tests/TestBayesModels.cc index 4473c35..f89ae80 100644 --- a/tests/TestBayesModels.cc +++ b/tests/TestBayesModels.cc @@ -20,7 +20,7 @@ #include "bayesnet/ensembles/AODELd.h" #include "bayesnet/ensembles/BoostAODE.h" -const std::string ACTUAL_VERSION = "1.2.0"; +const std::string ACTUAL_VERSION = "1.2.1"; TEST_CASE("Test Bayesian Classifiers score & version", "[Models]") {