Skip to content

Commit 3430e25

Browse files
author
J. Daniel Smith
authored
SIX-3.3.0 (#742)
* 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 * release notes for SIX-3.2.5 * CODA-OSS 2024-03-18 and NITRO-2.11.6 * SIX-3.3.0 * [coda-oss](https://github.com/mdaus/coda-oss) version [2024-03-18](https://github.com/mdaus/coda-oss/releases/tag/2024-03-18) * [nitro](https://github.com/mdaus/nitro) version [2.11.6](https://github.com/mdaus/nitro/releases/tag/NITRO-2.11.6) * Fix SIDD 3.0 validation with J2K compression; **this is a breaking change**. * Support for using SIDD code (only actually available with C++17). * Fix bug computing size of the CPHD scratch buffer. * Allow components to be built as shared-libraries (DLLs); disabled by default.
1 parent 2c55598 commit 3430e25

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

ReleaseNotes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

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

5+
## [Version 3.3.0](https://github.com/ngageoint/six-library/releases/tag/SIX-3.3.0); March 18, 2024
6+
* [coda-oss](https://github.com/mdaus/coda-oss) version [2024-03-18](https://github.com/mdaus/coda-oss/releases/tag/2024-03-18)
7+
* [nitro](https://github.com/mdaus/nitro) version [2.11.6](https://github.com/mdaus/nitro/releases/tag/NITRO-2.11.6)
8+
* Fix SIDD 3.0 validation with J2K compression; **this is a breaking change**.
9+
* Support for using SIDD code (only actually available with C++17).
10+
* Fix bug computing size of the CPHD scratch buffer.
11+
* Allow components to be built as shared-libraries (DLLs); disabled by default.
12+
513
## [Version 3.2.5](https://github.com/ngageoint/six-library/releases/tag/SIX-3.2.5); October 23, 2023
614
* [coda-oss](https://github.com/mdaus/coda-oss) version [2023-10-23](https://github.com/mdaus/coda-oss/releases/tag/2023-10-23)
715
* [nitro](https://github.com/mdaus/nitro) version [2.11.5](https://github.com/mdaus/nitro/releases/tag/NITRO-2.11.5)

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,11 @@
3939
// SIX 3.2.3 2023-Jun-05
4040
// SIX 3.2.4 2023-Aug-21
4141
// SIX 3.2.5 2023-Oct-23
42+
// SIX 3.3.0 2024-Mar-18
4243

4344
#define SIX_VERSION_MAJOR 3
44-
#define SIX_VERSION_MINOR 2
45-
#define SIX_VERSION_PATCH 5 // a.k.a. "point," but that's too similar to "patch."
45+
#define SIX_VERSION_MINOR 3
46+
#define SIX_VERSION_PATCH 0 // a.k.a. "point," but that's too similar to "patch."
4647
//#define SIX_VERSION_BUILD 0 // a.k.a. "patch," but that's too similar to "point."
4748
//#define SIX_VERSION CODA_OSS_MAKE_VERSION_MMPB(SIX_VERSION_MAJOR, SIX_VERSION_MINOR, SIX_VERSION_PATCH, SIX_VERSION_BUILD)
4849
#define SIX_VERSION CODA_OSS_MAKE_VERSION_MMP(SIX_VERSION_MAJOR, SIX_VERSION_MINOR, SIX_VERSION_PATCH)

0 commit comments

Comments
 (0)