From 572260fdc1ba973bd9a0b0f69dc58a4e91ae97ca Mon Sep 17 00:00:00 2001 From: Wim Haeck Date: Tue, 16 Jan 2024 13:59:28 -0700 Subject: [PATCH] Update version number and release notes --- ReleaseNotes.md | 4 ++++ src/njoy21/Version.hpp | 2 +- src/njoy21/Version/test/Version.test.cpp | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 67a924af..6809cb13 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,6 +1,10 @@ # Release Notes—NJOY21 Given here are some release notes for NJOY21. Each release is made through a formal [Pull Request](https://github.com/njoy/NJOY21/pulls) made on GitHub. There are links in this document that point to each of those Pull Requests, where you can see in great details the changes that were made. Often the Pull Requests are made in response to an [issue](https://github.com/njoy/NJOY21/issues). In such cases, links to those issues are also given. +## [NJOY21 1.2.74](https://github.com/njoy/NJOY21/pull/185) +- Updating NJOY2016 dependency to NJOY2016.74. See [release 2016.74](https://github.com/njoy/NJOY2016/releases/tag/2016.74) for more information +- Updated test inputs and results from NJOY2016. + ## [NJOY21 1.2.72](https://github.com/njoy/NJOY21/pull/183) - Updating NJOY2016 dependency to NJOY2016.72. See [release 2016.72](https://github.com/njoy/NJOY2016/releases/tag/2016.72) for more information - Updated test inputs and results from NJOY2016. diff --git a/src/njoy21/Version.hpp b/src/njoy21/Version.hpp index ca6060fb..1baa31cf 100644 --- a/src/njoy21/Version.hpp +++ b/src/njoy21/Version.hpp @@ -4,7 +4,7 @@ class Version{ // Change whenever new capability is implemented static constexpr int minorVersion{2}; // Change whenever merge to master branch is done - static constexpr int patchVersion{3}; + static constexpr int patchVersion{74}; static std::string version(){ return std::to_string( majorVersion ) + "." + diff --git a/src/njoy21/Version/test/Version.test.cpp b/src/njoy21/Version/test/Version.test.cpp index d96c8f6d..b955d682 100644 --- a/src/njoy21/Version/test/Version.test.cpp +++ b/src/njoy21/Version/test/Version.test.cpp @@ -11,6 +11,6 @@ namespace njoy21 { // This is not a guarantee, but it should help. SCENARIO( "Testing NJOY21 version" ){ - CHECK( "1.2.3" == njoy21::Version::version() ); + CHECK( "1.2.74" == njoy21::Version::version() ); } // SCENARIO