Commit Graph

102 Commits

Author SHA1 Message Date
Ward Fisher
8b5f677e53 Updated release notes to reflect resolution of jira issue NCF-288, e.g. cmake not generating pkg config files. 2014-02-07 13:05:46 -07:00
Ward Fisher
9749390720 Corrected some warnings issued by doxygen when generating documentation. 2014-02-06 17:59:57 -07:00
Ward Fisher
870dc3b8ec Updated release notes to mention a JIRA issue that Dennis has addressed. 2014-02-06 11:43:35 -07:00
Ward Fisher
e66ab99303 Updated documentation in preparation for upcoming 4.3.1.1 bugfix release. 2014-02-05 10:16:10 -07:00
Ward Fisher
f3be082363 Updated RELEASE_NOTES.md with reference to Jira ticket for DAP/Cygwin64-related bugfix. 2014-02-04 16:41:15 -07:00
Ward Fisher
de05ed9c11 Added a note to RELEASE_NOTES.md regarding the upcoming bug fix release. 2014-01-29 16:11:24 -07:00
Ward Fisher
49d3addcaa Updated release notes. 2014-01-16 14:21:43 -07:00
Ward Fisher
0032af978b Added INQ_FORMAT_EXTENDED-related tests to the cmake build system (based on inclusion in autotools-based builds). 2014-01-16 13:14:49 -07:00
dmh
582410a407 [NCF-273]/HZY-708311
Add a new function called nc_inq_format_extended that
returns more detailed format information (vis-a-vis
nc_inq_format) about an open dataset.

Note that the netcdf API will present the file as if it had
the format specified by nc_inq_format.  The true file
format, however, may not even be a netcdf file; it might be
DAP, HDF4, or PNETCDF, for example. This function returns
that true file type.  It also returns the effective mode for
the file.

signature: nc_inq_format_extended(int ncid, int* formatp, int* modep)
where
* ncid is the NetCDF ID from a previous call to nc_open() or
  nc_create().
* formatp is a pointer to a location for returned true format.
* modep is a pointer to a location for returned mode flags.

Refer to the actual list in the file netcdf.h to see the
currently defined set.

Also added test cases (tst_formatx*).
2013-12-22 12:53:20 -07:00
Ward Fisher
5b547e7689 Updated Release Notes. 2013-12-19 10:22:54 -07:00
Ward Fisher
9f40e2cee2 Updated RELEASE NOTES, bumped revision to rc6 in preparation for forthcoming release candidate. 2013-12-19 10:21:34 -07:00
Russ Rew
a98cdc647f Added entry for fix. 2013-12-17 13:38:38 -07:00
Quincey Koziol
0d42ac7e87 Switch test for nc_inq_unlimdim and nc_inq_unlimdims to use the same ordering as
the rest of the dimension queries.  Correct error in library where types used
in sub-group variables but that were added to the file after the sub-group was
created weren't available for sub-group variables to use.  Start cleaning up
test suite and un-commenting tests that were commented out (got up to
nc_test4/tst_fills2.c, alphabetically) before running into an error in HDF5.
2013-12-15 19:55:41 -06:00
Ward Fisher
b43955ab49 Added test contributed by Jeff Whitaker. 2013-12-10 15:50:20 -07:00
Ward Fisher
45196f50ae Updated documentation for forthcoming release candidate. 2013-12-06 11:08:43 -07:00
Russ Rew
0bfdb80b68 Added entry or NCF-177. 2013-12-05 20:57:56 -07:00
Ward Fisher
1d7ec898ff Updated release notes. 2013-11-22 16:09:51 -07:00
dmh
cc95bd3d47 1. [NCF-276]/XXI-796914
Columbia server does not serve up proper
   opendap DDS replies. The Dataset {...} name
   changes depending on if the request has certain
   kinds of constraints.
   Code for a hack was not being used, so restore it.
   The fix is to effectively ignore differences in
   Dataset node names if the code is coming from
   columbia.edu.

2. [NCF-278]
   The ncgen code is improperly typing int64 integer constants
   as uint64.

3. [NCF-279]
   Empty string constants were not being properly
   filled when their target array is length 1 or more.
2013-11-17 14:26:14 -07:00
Russ Rew
448d55692d Added entry for NCF-275 bug fix. 2013-11-13 13:49:39 -07:00
Ward Fisher
55815fb8df Updated release notes to reflect a fix in man file generation when using CMake. 2013-11-06 14:03:04 -07:00
Ward Fisher
57521c0284 Updated RELEASE_NOTES.md 2013-11-05 16:47:55 -07:00
dmh
7f06e70828 Update release notes about ESG support 2013-10-17 11:48:33 -06:00
Ward Fisher
82f835edbb Corrected an issue when compiling with HDF4 and CMake. 2013-10-08 12:59:33 -06:00
dmh
850af2d435 [NCF-271]
Fix bug introduced by [NCF-267].
The bug was that octal constants that had
the highest bit set (e.g. '\200')
were not recognized as proper octal
constants. Fix was to keep as integer
until it was needed as an 8-bit byte.
2013-09-26 10:10:26 -06:00
Ward Fisher
1aef893cea Updated configuration files, RELEASE_NOTES so that changes from this point forward go under the heading of rc4. This may be changed if there is not a new release candidate. 2013-09-24 16:32:39 -06:00
Ward Fisher
e84cb3caa3 Added release date for 4.3.1-rc3 in release notes. 2013-09-24 15:56:22 -06:00
Ward Fisher
ba9e1979f6 Updated Release notes re: NCF-166 2013-09-24 15:19:41 -06:00
dmh
71dbc89dbb Update RELEASE_NOTES for NCF-267 2013-09-23 19:25:26 -06:00
Ward Fisher
976c11ca5c Added note re: NC_USE_STATIC_CRT option. 2013-09-23 10:57:01 -06:00
dmh
fc16046432 [NCF-265]
Ncgen is unable to resolve
ambiguous references to an enum
constant when two different enums
have same econstant name.

Solved by allowing more specific
forms for econstant references.
1. /.../enumname.enumconstname
2. enumname.enumconstname
3. enumconstname

Case 1 is resolved by using the econstant
in the specific enum definition. If none is
found, an error is reported.

Case 2 is resolved by
1. finding an enclosing group with an
   enum definition with the specified name
   and containing the specified econstant.
   If there are more than one, then an error is reported
2. finding all enum definitions in the dataset that have
   the specified enum name and contain the specified
   econstant. If more than one is found, then an error is reported.
If the above two methods fail, then report an error.

Case 3 is similar to case 2, but all enums, irrespective
of name are used if they contains the specified enum constant.

The ref_tst_econst.cdl test in ncdump is causing ncdump
to fail. So there may be yet some problem.
2013-09-20 20:48:05 -06:00
Russ Rew
0130bd8501 Add release notes entry. 2013-09-16 20:12:23 -06:00
Ward Fisher
74767a91f0 Updated RELEASE_NOTES.md with issues addressed by Quincy K. 2013-09-16 15:19:00 -06:00
Russ Rew
5f6f724d3d Merge branch 'master' of http://github.com/Unidata/netcdf-c before
making patch.
2013-09-16 15:09:53 -06:00
Russ Rew
752fd3869b Fixed Jira number in entry. 2013-09-16 15:09:25 -06:00
Ward Fisher
85187fc2a2 Updated RELEASE_NOTES.md for clarity. 2013-09-03 10:33:56 -06:00
Ward Fisher
a595c62d7f Updated RELEASE_NOTES with reference to LFS Jira ticket. Temporarily removed an LFS test on Windows. 2013-08-28 16:30:41 -06:00
Russ Rew
042f84cade Merge branch 'master' of http://github.com/Unidata/netcdf-c 2013-08-28 13:37:34 -06:00
Ward Fisher
bd51d8d568 Removed older directories no longer used in active development:
* librpc/
	* udunits/
	* libcf/
	* libcdmr/

Updated RELEASE_NOTES.md to reflect this.
Removed any dangling references from configure.ac, CMakeLists.txt.
2013-08-22 15:26:42 -06:00
Ward Fisher
1aab75f597 Updated RELEASE_NOTES to include mention of configuration files.
Updated RELEASE_NOTES so that full releases are header-two, release-candidates are header-three.
2013-08-19 15:30:27 -06:00
Ward Fisher
372b80b0bd Updated RELEASE_NOTES to reflect latest fix made by Quincy. 2013-08-19 09:55:50 -06:00
Russ Rew
0bfd43a4ea Merge branch 'master' of http://github.com/Unidata/netcdf-c
Updating to 4.3.1-rc1
2013-08-15 12:51:23 -06:00
Ward Fisher
e67480fe3a Updated Release Notes to include contribution from Orion Poplawski which corrected an issue with the CMake System, other CMake issue. 2013-08-13 16:04:23 -06:00
Ward Fisher
c1a57b0a0a Changed Markdown formatting to correct for a problem that manifested in the resultant doxygen-generated html pages. 2013-08-09 14:42:35 -06:00
Ward Fisher
f9e1374b6f Added information to RELEASE_NOTES to reflect the 'release candidate' status of the current release.
Added information about needing to generate configure scripts with 'autoreconf'.
Updated Building with CMake documentation, moved 4.3.0 errata to a place of less prominence.
2013-08-09 11:14:07 -06:00
Ward Fisher
5a5f4c7b75 Updated RELEASE_NOTES.md with information about nc_rename_grp (NCF-204). 2013-08-09 09:42:37 -06:00
Russ Rew
356824e036 Fix description of NCF-29 change 2013-08-07 15:50:31 -06:00
Ward Fisher
137282e650 Added information relevant to the github transition in RELEASE_NOTES.md,
transition document.

Remoted plain text release_notes moving forward.  Created a markdown
version of the README file as an experiment to see what we think. 
GitHub will render markdown natively, as does Doxygen and our new
build system.
2013-08-05 22:57:53 +00:00
Russ Rew
5eeae9f657 Add several entries for 4.3.1-rc1 2013-08-05 22:22:23 +00:00
Ward Fisher
b6d855c0b9 Added NC_HAVE_RENAME_GRP as per Charlie Zender's request:
https://www.unidata.ucar.edu/esupport/staff/index.php?_m=tickets&_a=viewticket&ticketid=22442

Updated configure.ac, CMakeLists.txt to reflect the upcoming 4.3.1-rc1
release.

Added notes to RELEASE_NOTES and RELEASE_NOTES.md
2013-08-01 21:55:32 +00:00
Ward Fisher
145f4c4b99 Merging latest changes from cmake branch into trunk. 2013-07-05 17:09:19 +00:00
Ward Fisher
b4e198d163 Added '--enable-dynamic-loading' to autotools-based builds, and
-DENABLE_DYNAMIC_LOADING to cmake-based builds.

This will allow for compatibility with hdf5 1.8.11 builds that
have enabled dynamic building (depends on libdl).

See Jira ticket NCF-258
2013-06-10 21:48:11 +00:00
Ward Fisher
aecd090f53 Added markdown version of RELEASE_NOTES for evaluation.
Modified Doxyfile templates to generate html from the
markdown file (assumes doxygen version 1.8+)

Added link to release notes to mainpage.doc
2013-05-07 20:54:54 +00:00