Skip to content

Commit 9714a86

Browse files
authored
Merge pull request #101 from njoy/update
Incorporating lipservice update to fix ACER NGEND=0 bug
2 parents 10acdd2 + 4392c35 commit 9714a86

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

ReleaseNotes.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
11
# Release Notes—NJOY21
22
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.
33

4-
## [NJOY21 1.0.5](https://github.com/njoy/NJOY21/pull/99)
4+
## [NJOY21 1.0.7](https://github.com/njoy/NJOY21/pull/101)
5+
This update fixes a bug in the error checking for ACER. This bug was fixed in lipservice:
6+
7+
- [ACER NGEND=0](https://github.com/njoy/lipservice/pull/14) which resolves [Issue #15](https://github.com/njoy/lipservice/issues/15)
8+
9+
## [NJOY21 1.0.6](https://github.com/njoy/NJOY21/pull/99)
510
This update adds to NJOY21 the NJOY2016 capability of >3 IZA values in ACER. This was added in NJOY2016 in [Pull Request #41](https://github.com/njoy/NJOY2016/pull/141). A few updates from lipservice are also included:
611

712
- [Removal of dimwits units](https://github.com/njoy/lipservice/pull/10)
813
- [Adding NZA option to ACER](https://github.com/njoy/lipservice/pull/11), and
914
- [RECONR to JSON](https://github.com/njoy/lipservice/pull/12).
1015

1116
All of these are included in the this version of NJOY21.
17+
## [NJOY21 1.0.5](https://github.com/njoy/NJOY21/pull/95)
18+
This fixes [Issue \#94](https://github.com/njoy/NJOY21/issues/94) which as caused by [Pull Request \#93](https://github.com/njoy/NJOY21/pull/93).
19+
20+
In [Pull Request#5](https://github.com/njoy/njoy_c_bindings/pull/5) from [njoy_c_bindings](https://github.com/njoy/njoy_c_bindings) the function `njoy_sync_error` was not added. NJOY21 1.0.5 includes [Pull Request#6](https://github.com/njoy/njoy_c_bindings/pull/6) of `njoy_c_bindings` which includes this necessary function.
1221

1322
## [NJOY21 1.0.4](https://github.com/njoy/NJOY21/pull/93)
1423
This version adds the capability to split the output into stderr and stdout. It is facilitated by and depends on [Pull Request#5](https://github.com/njoy/njoy_c_bindings/pull/5) from [njoy_c_bindings](https://github.com/njoy/njoy_c_bindings).
@@ -17,3 +26,11 @@ This is a nice little addition because you can see the progress of NJOY21 as it
1726

1827
## [NJOY21 1.0.3](https://github.com/njoy/NJOY21/pull/92)
1928
Changes in the ENDFtk parser (removing the hopscotch-map dependency) required changes to the build system CMakeLists.txt files. No other code was changed so NJOY21 1.0.3 is equivalent with NJOY21 1.0.2.
29+
30+
## [NJOY21 1.0.2](https://github.com/njoy/NJOY21/pull/87/)
31+
This incorporates the addition of `Ngen8` parameter in MATXSR. This updated occured as a result of [Pull Request \#6](https://github.com/njoy/lipservice/pull/6) from [lipservice](https://github.com/njoy/lipservice).
32+
33+
The manual doesn't state it, but the code allows the parameter `Ngen8` in MATXSR Card1. The updated to lipservice (and thus NJOY21) provides this parameter.
34+
35+
## [NJOY21 1.0.1](https://github.com/njoy/NJOY21/pull/92)
36+
This simply separates the documentation from the code.

src/njoy21/Version.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class Version{
44
// Change whenever new capability is implemented
55
static constexpr int minorVersion{0};
66
// Change whenever merge to master branch is done
7-
static constexpr int patchVersion{6};
7+
static constexpr int patchVersion{7};
88

99
static std::string version(){
1010
return std::to_string( majorVersion ) + "." +

0 commit comments

Comments
 (0)