diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 1c9d934ac..2bcf02499 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -2,6 +2,11 @@ # SIX [Release](https://github.com/ngageoint/six-library/releases) Notes +## [Version 3.2.0](https://github.com/ngageoint/six-library/releases/tag/SIX-3.2.0); August 30, 2022 +* [coda-oss](https://github.com/mdaus/coda-oss) version [2022-08-30_cpp14](https://github.com/mdaus/coda-oss/releases/tag/2022-08-30_cpp14) +* [nitro](https://github.com/mdaus/nitro) version [2.11.0](https://github.com/mdaus/nitro/releases/tag/NITRO-2.11.0) +* This version is identical to [Version 3.1.14](https://github.com/ngageoint/six-library/releases/tag/SIX-3.1.14) except that C++14 is now required. + ## [Version 3.1.14](https://github.com/ngageoint/six-library/releases/tag/SIX-3.1.14); August 30, 2022 * [coda-oss](https://github.com/mdaus/coda-oss) version [2022-08-30](https://github.com/mdaus/coda-oss/releases/tag/2022-08-30) * [nitro](https://github.com/mdaus/nitro) version [2.10.12](https://github.com/mdaus/nitro/releases/tag/NITRO-2.10.12) diff --git a/six/modules/c++/six/include/six/Version.h b/six/modules/c++/six/include/six/Version.h index 0d0ba581b..8675c1bd3 100644 --- a/six/modules/c++/six/include/six/Version.h +++ b/six/modules/c++/six/include/six/Version.h @@ -20,13 +20,14 @@ * see . * */ -#ifndef SIX_Version_h_INCLUDED_ -#define SIX_Version_h_INCLUDED_ +#ifndef SIX_six_Version_h_INCLUDED_ +#define SIX_six_Version_h_INCLUDED_ #pragma once #include "config/Version.h" #include "nitf/Version.hpp" + // SIX 3.2.0 2022-Aug-30 (C++14) // SIX 3.1.14 2022-Aug-30 // SIX 3.1.13 2022-Aug-02 // SIX 3.1.12 2022-Jun-29 @@ -34,8 +35,8 @@ // SIX 3.1.10 2022-May-03 // SIX 3.1.9 2022-Feb-02 #define SIX_VERSION_MAJOR 3 -#define SIX_VERSION_MINOR 1 -#define SIX_VERSION_PATCH 14 +#define SIX_VERSION_MINOR 2 +#define SIX_VERSION_PATCH 0 //#define SIX_VERSION_BUILD 0 //#define SIX_VERSION CODA_OSS_MAKE_VERSION_MMPB(SIX_VERSION_MAJOR, SIX_VERSION_MINOR, SIX_VERSION_PATCH, SIX_VERSION_BUILD) #define SIX_VERSION CODA_OSS_MAKE_VERSION_MMP(SIX_VERSION_MAJOR, SIX_VERSION_MINOR, SIX_VERSION_PATCH) @@ -49,4 +50,4 @@ namespace six //constexpr auto version_build = CODA_OSS_GET_VERSION_BUILD(SIX_VERSION); } -#endif // SIX_Version_h_INCLUDED_ +#endif // SIX_six_Version_h_INCLUDED_