From f8183407f8494db7a3fe5dd63b1e027fef6eb4ff Mon Sep 17 00:00:00 2001 From: Maria Guerra Date: Mon, 4 Dec 2023 09:26:22 +0000 Subject: [PATCH] Fix update changelog script. --- VERSION | 2 +- docs/CHANGELOG.md | 13 +++++++++++++ run_update_changelog.sh | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 9084fa2f..227cea21 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.0 +2.0.0 diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 3c921684..63e4f699 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -5,6 +5,19 @@ 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). +## [2.0.0] - 2023-12-04 + +### Added + +- Create report class Change: refactor statistical test functions and trail search functions outputs Change: refactor old pytest files for statistical test functions and trail search functions. Remove: remove old functions to create dataframes and heatmaps for statistical test functions +- External solver support for MILP truncated/impossible modules +- Implement scarf block cipher +- Window heuristic per modular addition + +### Fixed + +- Fix versioning + ## [1.1.0] - 2023-11-27 ### Added diff --git a/run_update_changelog.sh b/run_update_changelog.sh index 18edc55f..6ebe5a13 100644 --- a/run_update_changelog.sh +++ b/run_update_changelog.sh @@ -31,7 +31,7 @@ if [[ is_valid_last_commit ]]; then repository_name=$1 if [ ${#pull_request_commits[@]} -gt 0 ]; then python3 update_changelog.py --repository_url "${repository_name}" --pull_request_commits "${pull_request_commits[@]}" - if [[ $(git status --porcelain CHANGELOG.md) ]]; then + if [[ $(git status --porcelain ./docs/CHANGELOG.md) ]]; then should_add_last_changes_to_master=true fi fi