mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
Merged latest from trunk.
This commit is contained in:
commit
6724dd879c
@ -7,8 +7,8 @@ set(PACKAGE "netCDF" CACHE STRING "")
|
||||
#Project Version
|
||||
SET(netCDF_VERSION_MAJOR 4)
|
||||
SET(netCDF_VERSION_MINOR 3)
|
||||
SET(netCDF_VERSION_PATCH 0)
|
||||
SET(netCDF_VERSION_NOTE "")
|
||||
SET(netCDF_VERSION_PATCH 1)
|
||||
SET(netCDF_VERSION_NOTE "-rc1")
|
||||
SET(netCDF_VERSION ${netCDF_VERSION_MAJOR}.${netCDF_VERSION_MINOR}.${netCDF_VERSION_PATCH}${netCDF_VERSION_NOTE})
|
||||
SET(VERSION ${netCDF_VERSION})
|
||||
#Library .so version.
|
||||
|
41
README-SVN-TRANSITION-TO-GITHUB.txt
Normal file
41
README-SVN-TRANSITION-TO-GITHUB.txt
Normal file
@ -0,0 +1,41 @@
|
||||
Hello all,
|
||||
|
||||
In a move that has been a long time coming, we would like to announce
|
||||
the transition from our in-house subversion repository to GitHub.
|
||||
The netCDF C, Fortran, and C++ libraries will join other projects
|
||||
such as THREDDS, IDV, GEMPACK, and LDM at the Unidata GitHub
|
||||
repository, located at:
|
||||
|
||||
http://github.com/Unidata
|
||||
|
||||
The benefits of this transition, beyond bringing the netCDF projects
|
||||
in line with other Unidata distributions, will be to improve
|
||||
collaboration with other developers in our community.
|
||||
|
||||
For those unfamiliar with git and GitHub, no user account is required;
|
||||
anonymous access is supported. You can fetch a copy of the repository
|
||||
by using the 'git' command instead of the 'svn' command. For those
|
||||
unfamiliar with git, GitHub hosts a series of tutorials and
|
||||
screencasts which may be found here:
|
||||
|
||||
https://help.GitHub.com/articles/where-can-i-learn-more-about-git-and-GitHub.
|
||||
|
||||
There are also a number of free GUI front-ends for git, including
|
||||
the GitHub GUI front-end and SourceTree for Windows and OSX. Source
|
||||
releases will still be accessible from the Unidata website, as will
|
||||
binary releases (currently, only binaries for Windows are generated).
|
||||
|
||||
The target date for this transition is one week from today; Tuesday,
|
||||
August 6th. On this date the subversion repository will be frozen
|
||||
during the transition; this process takes several hours in our
|
||||
dry-runs. Once the transition is complete, an announcement will
|
||||
be made. The subversion repository will stay around for 2 months
|
||||
at least (actual EOL is TBD), but changes will not be made to it.
|
||||
|
||||
Thanks for your time, we look forward to our move to GitHub, and
|
||||
are happy to answer any questions about this upcoming transition.
|
||||
|
||||
|
||||
The netCDF team,
|
||||
|
||||
Russ, Dennis and Ward
|
@ -8,6 +8,12 @@ VERSION COMMENTS
|
||||
------- --------
|
||||
4.3.1 Released TBD
|
||||
|
||||
Added a NC_HAVE_RENAME_GRP macro to netcdf.h, as per
|
||||
a request by Charlie Zender. This will allow software
|
||||
compiling against netcdf to easily query whether or
|
||||
not nc_rename_grp() is available.
|
||||
|
||||
|
||||
Added Greg Sjaardema's contributed optimization for
|
||||
the nc4_find_dim_len function in
|
||||
libsrc4/nc4internal.c. The patch eliminates several
|
||||
|
@ -7,7 +7,11 @@ information, where '[NCF-XXX]' refers to https://www.unidata.ucar.edu/jira/brows
|
||||
|
||||
### 4.3.1 Released TBD
|
||||
|
||||
* Added Greg Sjaardema's contributed optimization for the nc4\_find\_dim\_len function in libsrc4/nc4internal.c. The patch eliminates several malloc/free calls that exist in the original coding.
|
||||
* Added a `NC_HAVE_RENAME_GRP` macro to netcdf.h, [as per the request by Charlie Zender][cz1]. This will allow software compiling against netcdf to easily query whether or not nc\_rename\_grp() is available.
|
||||
|
||||
[cz1]: https://www.unidata.ucar.edu/esupport/staff/index.php?_m=tickets&_a=viewticket&ticketid=22442
|
||||
|
||||
* Added Greg Sjaardema's contributed optimization for the nc4\_find\_dim\_len function in libsrc4/nc4internal.c. The patch eliminates several malloc/free calls that exist in the original coding.
|
||||
|
||||
* Added support for dynamic loading, to compliment the dynamic loading support introduced in hdf 1.8.11. Dynamic loading support depends on libdl, and is enabled as follows: [NCF-258]
|
||||
* autotools-based builds: --enable-dynamic-loading
|
||||
|
@ -15,7 +15,7 @@ AC_REVISION([$Id: configure.ac,v 1.450 2010/05/28 19:42:47 dmh Exp $])
|
||||
AC_PREREQ([2.59])
|
||||
|
||||
# Initialize with name, version, and support email address.
|
||||
AC_INIT([netCDF], [4.3.0], [support-netcdf@unidata.ucar.edu])
|
||||
AC_INIT([netCDF], [4.3.1-rc1], [support-netcdf@unidata.ucar.edu])
|
||||
|
||||
# Create the VERSION file, which contains the package version from
|
||||
# AC_INIT.
|
||||
|
@ -1895,6 +1895,14 @@ ncrecput(int ncid, long recnum, void *const *datap);
|
||||
#define END_OF_MAIN()
|
||||
#endif
|
||||
|
||||
|
||||
/* Allow dependent software to tell if
|
||||
nc_rename_grp() is available, as requested
|
||||
by Charlie Zender. */
|
||||
#ifndef NC_HAVE_RENAME_GRP
|
||||
#define NC_HAVE_RENAME_GRP
|
||||
#endif
|
||||
|
||||
#endif /* _NETCDF_ */
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user