Skip to content

Commit c14f996

Browse files
author
J. Daniel Smith
authored
SIX-3.2.4 (#687)
* SIX 3.1.15 * merge develop/sync_externals * Update ReleaseNotes.md for SIX 3.2.3 * SIX-3.2.4 * [coda-oss](https://github.com/mdaus/coda-oss) version [2023-08-18](https://github.com/mdaus/coda-oss/releases/tag/2023-08-18) * [nitro](https://github.com/mdaus/nitro) version [2.11.4](https://github.com/mdaus/nitro/releases/tag/NITRO-2.11.4) * Prepare for deprecating [`std::complex<short>`](https://en.cppreference.com/w/cpp/numeric/complex), et. al. * Allow XML metadata to be parsed with `preserveCharacterData(true)` to keep white-space. * Added support for [CPHD 1.1.0](https://nsgreg.nga.mil/doc/view?i=5388) XML metadata. * added **.gitattributes** and normalized line-endings (`\n` for most text files). * Links to two bugfixes
1 parent 745bc6f commit c14f996

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

ReleaseNotes.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22

33
# SIX [Release](https://github.com/ngageoint/six-library/releases) Notes
44

5-
## [Version 3.?.?](https://github.com/ngageoint/six-library/releases/tag/SIX-3.?.?); ??? ?, 202?
6-
* [coda-oss](https://github.com/mdaus/coda-oss) version [202?-??-??](https://github.com/mdaus/coda-oss/releases/tag/2023-??-??)
7-
* [nitro](https://github.com/mdaus/nitro) version [2.?.?](https://github.com/mdaus/nitro/releases/tag/NITRO-2.?.?)
5+
## [Version 3.2.4](https://github.com/ngageoint/six-library/releases/tag/SIX-3.2.4); August 21, 2023
6+
* [coda-oss](https://github.com/mdaus/coda-oss) version [2023-08-18](https://github.com/mdaus/coda-oss/releases/tag/2023-08-18)
7+
* [nitro](https://github.com/mdaus/nitro) version [2.11.4](https://github.com/mdaus/nitro/releases/tag/NITRO-2.11.4)
88
* Prepare for deprecating [`std::complex<short>`](https://en.cppreference.com/w/cpp/numeric/complex), et. al.
99
* Allow XML metadata to be parsed with `preserveCharacterData(true)` to keep white-space.
1010
* Added support for [CPHD 1.1.0](https://nsgreg.nga.mil/doc/view?i=5388) XML metadata.
11+
* Bugfix: read SIDDs [without a LUT](https://github.com/ngageoint/six-library/pull/683).
12+
* Bugfix: [CPHD 'releaseInfo' can be empty](https://github.com/ngageoint/six-library/pull/670).
13+
* added **.gitattributes** and normalized line-endings (`\n` for most text files).
1114

1215
## [Version 3.2.3](https://github.com/ngageoint/six-library/releases/tag/SIX-3.2.3); June 5, 2023
1316
* [coda-oss](https://github.com/mdaus/coda-oss) version [2023-06-05](https://github.com/mdaus/coda-oss/releases/tag/2023-06-05)

six/modules/c++/six/include/six/Version.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,12 @@
3737
// SIX 3.2.1 2022-Nov-04
3838
// SIX 3.2.2 2022-Dec-14
3939
// SIX 3.2.3 2023-Jun-05
40+
// SIX 3.2.4 2023-Aug-21
4041

4142
#define SIX_VERSION_MAJOR 3
4243
#define SIX_VERSION_MINOR 2
43-
#define SIX_VERSION_PATCH 3
44-
//#define SIX_VERSION_BUILD 0
44+
#define SIX_VERSION_PATCH 4 // a.k.a. "point," but that's too similar to "patch."
45+
//#define SIX_VERSION_BUILD 0 // a.k.a. "patch," but that's too similar to "point."
4546
//#define SIX_VERSION CODA_OSS_MAKE_VERSION_MMPB(SIX_VERSION_MAJOR, SIX_VERSION_MINOR, SIX_VERSION_PATCH, SIX_VERSION_BUILD)
4647
#define SIX_VERSION CODA_OSS_MAKE_VERSION_MMP(SIX_VERSION_MAJOR, SIX_VERSION_MINOR, SIX_VERSION_PATCH)
4748

0 commit comments

Comments
 (0)