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

Increase version to v37r1 and update change log

parent 74f2f657
No related branches found
No related tags found
1 merge request!1506Bump version to v37r1
Pipeline #6408915 passed
...@@ -5,6 +5,31 @@ Project Coordinators: Marco Clemencic @clemenci, Charles Leggett @leggett ...@@ -5,6 +5,31 @@ 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/).
## [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.
It features as well a number of other fixes and improvements and some clean up.
As of this release I added machine readable citation instructions (see https://citation-file-format.github.io/).
### Changed
- Remove `FindTBB.cmake` to rely on the official `TBBConfig.cmake` (gaudi/Gaudi!1510)
- `genconf`: remove property type comment from Conf files (gaudi/Gaudi!1502)
### Added
- Add citation instructions and helper to prepare new releases (gaudi/Gaudi!1494)
### Fixed
- Work around issue with clang implicit instantiation in C++20 mode. (gaudi/Gaudi!1511)
- `JobOptionSvc`: use stringstream to read job options file (gaudi/Gaudi!1509)
- Fixes for gcc 13, clang 16 and C++20 (gaudi/Gaudi!1501)
- Remove name argument from GaudiConfig2 PropertySemantics (gaudi/Gaudi#275, gaudi/Gaudi!1492)
- Drop a Python 2 compatibility hack and fix handling of bool properties in GaudiPython (gaudi/Gaudi#276, gaudi/Gaudi!1507)
- Fixed unsafe floating point comparisons (gaudi/Gaudi!1490)
- `GaudiConfig2`: minor performance optimizations for Configurable (gaudi/Gaudi!1500)
- Fixed JSON counter dumps validation to ignore changes in order of entries (gaudi/Gaudi!1496)
- Support oneTBB (gaudi/Gaudi#270, gaudi/Gaudi!1495)
## [v37r0](https://gitlab.cern.ch/gaudi/Gaudi/-/releases/v37r0) - 2023-09-14 ## [v37r0](https://gitlab.cern.ch/gaudi/Gaudi/-/releases/v37r0) - 2023-09-14
This is the first major release of Gaudi in a while. This was made necessary to be able to incorporate This is the first major release of Gaudi in a while. This was made necessary to be able to incorporate
a number of backward incompatible changes that have been kept in the backburner until now. a number of backward incompatible changes that have been kept in the backburner until now.
......
...@@ -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: v37r0 version: v37r1
date-released: '2023-09-14' date-released: '2023-10-30'
...@@ -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.0 project(Gaudi VERSION 37.1
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.0" version = "37.1"
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = "v37r0" release = "v37r1"
# -- 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