Releases: Unidata/netcdf-fortran
netCDF-Fortran 4.4.3
4.4.3 Released 2016-01-20
- Corrected a bug which would return a false-positive in
nf_test
,nf03_test
when using netCDF-C4.4.0
. - Updated the
cfortran.doc
license document for thecfortran.h
library. The most recent version was pulled from http://cfortran.sourceforge.net. The previous version did not reflect that the author had released cfortran under the LGPL. See Github Issue 27 for more information.
netCDF-Fortran 4.4.2
4.4.2 Released 2015-02-02
- Added infrastructure to support the new
netcdf-c
option,ENABLE_REMOTE_FORTRAN_BOOTSTRAP
. - Incorporated changes submitted by Nico Schlomer which extends the cmake compatibility between
netcdf-c
andnetcdf-fortran
. - Incorporated a patch submitted by Thomas Jahns which fixed
FC
being unconditionally overwritten byF77
whenFortran 90
was disabled.
netcdf-fortran v4.4.1
This is the release of netCDF-Fortran 4.4.1.
Below are the release notes for changes made since the 4.4.0
release. For a full listing of changes, please see the netcdf-fortran release notes.
Instructions for building netcdf-fortran may be found here:
Historic user documentation may be found here:
4.4.1 Released 2014-09-09
- Added a new variable for cmake-based builds,
NC_EXTRA_DEPS
. Use this to specify additional dependencies when linking against a staticnetcdf-c
library, e.g.
netcdf-fortran/build$ cmake .. -DNC_EXTRA_DEPS="-lhdf5 -lhdf5_hl -lcurl"
- Fixed to build correctly with netCDF-3-only C library, for example C library configured with --disable-netcdf-4 (R. Weed).
netCDF-Fortran 4.4.1-rc1
This is the Release Candidate 1
release of netCDF-Fortran 4.4.1.
Below are the release notes for changes made since the 4.4.0
release. For a full listing of changes, please see the netcdf-fortran release notes.
Instructions for building netcdf-fortran may be found here:
Historic user documentation may be found here:
4.4.1-RC1 Released 2014-08-05
- Added a new variable for cmake-based builds,
NC_EXTRA_DEPS
. Use this to specify additional dependencies when linking against a staticnetcdf-c
library, e.g.
netcdf-fortran/build$ cmake .. -DNC_EXTRA_DEPS="-lhdf5 -lhdf5_hl -lcurl"
- Fixed to build correctly with netCDF-3-only C library, for example C library configured with --disable-netcdf-4 (R. Weed).
netcdf-fortran v4.4.0
Below are the release notes for changes made since the 4.4-rc1
release. For a full listing of changes, please see the netcdf-fortran release notes.
Instructions for building netcdf-fortran may be found here:
Historic user documentation may be found here:
4.4 Released 2014-07-08
- For 32-bit platforms fixed integer fill parameters, initialized potentially
unitialized variables, and provided some missing defaults (R. Weed). - Fixed CMake builds on 32-bit platforms.
- Added new
inq_path
andrename_grps
functions analogous to
corresponding C functions. Added associated tests. (R. Weed) - Added support for NF_MPIIO,
NF_MPIPOSIX
,NF_PNETCDF
flags and
NF_FILL_UINT
. (R. Weed) - Fixed potential bug in attribute functions for integer values when
FortranINTEGER*1
orINTEGER*2
types are the same size as C
long. (R. Weed) - Added test for compiler support of Fortran 2008
ISO_FORTRAN_ENV
additions and TS29113 standard extension. - Fixed
C_PTR_DIFF_T
issue reported by Orion Poplowski. (R. Weed)
v4.4.0-rc1
These release notes are for netCDF-Fortran 4.4.0, release candidate 1. For a full list of release notes including notes for previous releases, please see:
https://github.com/Unidata/netcdf-fortran/blob/master/RELEASE_NOTES.md
4.4-rc1 Released 2013-10-06
- Added missing error codes for DAP and some netCDF-4 errors
- Fixed some documentation for F77 API, added make rule for creating
netcdf-f77 HTML files.
Release notes for netCDF-Fortran 4.4b5
VERSION COMMENTS
4.4-beta5 Released 2013-08-27
- Added configuration files to github distribution.
4.4-beta4
- Moved to GitHub from Subversion, the location of the new GitHub repository is at: http://github.com/Unidata/netCDF-Fortran
- Parallel-build portability fixes, particularly for
OpenMPI and gcc/gfortran-4.8.x on the Mac. Also added
test from Reto Stöckli for NCF-250 bug, demonstrating
it was fixed in previous commit. - Add support for NF_MPIIO, NF_MPIPOSIX, NF_PNETCDF, and
NF_FILL_UINT in the data files. - Add support for nf_inq_path.
- Add a pre-processor macro that can be used to bypass
the home-brew C_PTRDIFF_T definition and use the
standard one for compilers that support it. - Fix a potential bug in nf_attio to call the _long
version of some puts/gets instead of the _int
version. These were inside INT1_IS_C_LONG and
INT2_IS_C_LONG ifdef blocks so they would have only
showed up when those macros were true.