Skip to content
Snippets Groups Projects
Commit 7a542489 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Bump version to 37.2 and update change log

parent 35d4b626
No related branches found
No related tags found
1 merge request!1525Bump version to 37.2 and update change log
Pipeline #6543733 passed
...@@ -5,6 +5,22 @@ Project Coordinators: Marco Clemencic @clemenci, Charles Leggett @leggett ...@@ -5,6 +5,22 @@ Project Coordinators: Marco Clemencic @clemenci, Charles Leggett @leggett
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
## [v37r2](https://gitlab.cern.ch/gaudi/Gaudi/-/releases/v37r2) - 2023-11-28
Minor fixes in preparation for the next major release.
### Changed
- Deprecate no longer required `concat_alternatives` (gaudi/Gaudi!1513)
- Migrate tests to pytest and various fixes (gaudi/Gaudi!1517 gaudi/Gaudi!1519)
### Fixed
- `GaudiConfig2`: strict type checking for list properties (gaudi/Gaudi!1518)
- Fix booking of n-tuple columns with and without ranges (gaudi/Gaudi#282 gaudi/Gaudi!1522)
- Prefer `std::abs` over `abs` (gaudi/Gaudi!1516, gaudi/Gaudi!1524)
- Fix include for catch2 3.1 and above (gaudi/Gaudi!1515)
- Cleanup of `SmartRef` (gaudi/Gaudi!1512)
- Work around libstdc++ bug (gaudi/Gaudi!1514)
## [v37r1](https://gitlab.cern.ch/gaudi/Gaudi/-/releases/v37r1) - 2023-10-30 ## [v37r1](https://gitlab.cern.ch/gaudi/Gaudi/-/releases/v37r1) - 2023-10-30
This is a minor release meant mostly to address issues with compilation on gcc 13, clang 16 and C++20. This is a minor release meant mostly to address issues with compilation on gcc 13, clang 16 and C++20.
It features as well a number of other fixes and improvements and some clean up. It features as well a number of other fixes and improvements and some clean up.
......
...@@ -24,5 +24,5 @@ keywords: ...@@ -24,5 +24,5 @@ keywords:
- HEP - HEP
- Software Framework - Software Framework
license: Apache-2.0 license: Apache-2.0
version: v37r1 version: v37r2
date-released: '2023-10-30' date-released: '2023-11-28'
...@@ -81,7 +81,7 @@ Maintainer's guide: `<https://twiki.cern.ch/twiki/bin/view/LHCb/MaintainGaudiCMa ...@@ -81,7 +81,7 @@ Maintainer's guide: `<https://twiki.cern.ch/twiki/bin/view/LHCb/MaintainGaudiCMa
cmake_minimum_required(VERSION 3.15) cmake_minimum_required(VERSION 3.15)
project(Gaudi VERSION 37.1 project(Gaudi VERSION 37.2
LANGUAGES CXX LANGUAGES CXX
DESCRIPTION "Gaudi Software Framework" DESCRIPTION "Gaudi Software Framework"
HOMEPAGE_URL "https://cern.ch/gaudi") HOMEPAGE_URL "https://cern.ch/gaudi")
......
...@@ -22,9 +22,9 @@ copyright = "1998-2023, CERN for the benefit of the LHCb and ATLAS collaboration ...@@ -22,9 +22,9 @@ copyright = "1998-2023, CERN for the benefit of the LHCb and ATLAS collaboration
author = "The Gaudi Developers" author = "The Gaudi Developers"
# The short X.Y version # The short X.Y version
version = "37.1" version = "37.2"
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = "v37r1" release = "v37r2"
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment