Skip to content

Commit cd1cd21

Browse files
authored
Merge pull request #340 from njoy/develop
NJOY2016.76
2 parents 329f011 + f656624 commit cd1cd21

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.github/workflows/ContinuousIntegration.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
runs-on: ${{matrix.os}}
1919
strategy:
2020
matrix:
21-
os: [ ubuntu-20.04, macos-11 ]
21+
os: [ ubuntu-22.04, macos-12 ]
2222
build_type: [ Debug, Release ]
23-
vFortran: [ gfortran-10 ]
23+
vFortran: [ gfortran-11 ]
2424

2525
steps:
2626
- name: which gfortran

ReleaseNotes.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Release Notes—NJOY2016
22
Given here are some release notes for NJOY2016. Each release is made through a formal [Pull Request](https://github.com/njoy/NJOY2016/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/NJOY2016/issues). In such cases, links to those issues are also given.
33

4+
## [NJOY2016.76](https://github.com/njoy/NJOY2016/pull/340)
5+
This update fixes the following issues:
6+
- Increase an array size to properly process Pt covariances in ENDF/B-VIII.1.
7+
48
## [NJOY2016.75](https://github.com/njoy/NJOY2016/pull/335)
59
This update fixes the following issues:
610
- Corrected a typo in the gateff subroutine in thermr (changed 1220 into 1200, see issue #76)

src/errorr.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ subroutine errorr
713713
!--read covariance reaction types from end/b dictionary
714714
!--and set file 32 flag
715715
nscr2=0
716-
nwi=4000
716+
nwi=40000
717717
allocate(dict(nwi))
718718
call repoz(nendf)
719719
call tpidio(nendf,0,0,dict,nb,nw)

src/vers.f90

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ module version
33
! These values are updated during the NJOY revision-control process.
44
implicit none
55
private
6-
character(8),public::vers='2016.75'
7-
character(8),public::vday='29Apr24'
6+
character(8),public::vers='2016.76'
7+
character(8),public::vday='03Jul24'
88
end module version

0 commit comments

Comments
 (0)