Skip to content

Commit

Permalink
Update version number and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
whaeck committed Jan 16, 2024
1 parent 0406d46 commit 572260f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/njoy21/Version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 ) + "." +
Expand Down
2 changes: 1 addition & 1 deletion src/njoy21/Version/test/Version.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 572260f

Please sign in to comment.