Skip to content

Commit 757a907

Browse files
author
J. Daniel Smith
authored
SIX-3.2.0 (#590)
* Squashed commit of the following: commit 904aeb8 Author: J. Daniel Smith <[email protected]> Date: Tue Aug 30 15:27:33 2022 -0400 NITRO-2.11.0 commit 5e724e7 Author: J. Daniel Smith <[email protected]> Date: Tue Aug 30 15:25:52 2022 -0400 coda-oss 2022-08-30_cpp14 * SIX-3.2.0
1 parent 451d230 commit 757a907

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

ReleaseNotes.md

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

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

5+
## [Version 3.2.0](https://github.com/ngageoint/six-library/releases/tag/SIX-3.2.0); August 30, 2022
6+
* [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)
7+
* [nitro](https://github.com/mdaus/nitro) version [2.11.0](https://github.com/mdaus/nitro/releases/tag/NITRO-2.11.0)
8+
* 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.
9+
510
## [Version 3.1.14](https://github.com/ngageoint/six-library/releases/tag/SIX-3.1.14); August 30, 2022
611
* [coda-oss](https://github.com/mdaus/coda-oss) version [2022-08-30](https://github.com/mdaus/coda-oss/releases/tag/2022-08-30)
712
* [nitro](https://github.com/mdaus/nitro) version [2.10.12](https://github.com/mdaus/nitro/releases/tag/NITRO-2.10.12)

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,23 @@
2020
* see <http://www.gnu.org/licenses/>.
2121
*
2222
*/
23-
#ifndef SIX_Version_h_INCLUDED_
24-
#define SIX_Version_h_INCLUDED_
23+
#ifndef SIX_six_Version_h_INCLUDED_
24+
#define SIX_six_Version_h_INCLUDED_
2525
#pragma once
2626

2727
#include "config/Version.h"
2828
#include "nitf/Version.hpp"
2929

30+
// SIX 3.2.0 2022-Aug-30 (C++14)
3031
// SIX 3.1.14 2022-Aug-30
3132
// SIX 3.1.13 2022-Aug-02
3233
// SIX 3.1.12 2022-Jun-29
3334
// SIX 3.1.11 2022-May-13
3435
// SIX 3.1.10 2022-May-03
3536
// SIX 3.1.9 2022-Feb-02
3637
#define SIX_VERSION_MAJOR 3
37-
#define SIX_VERSION_MINOR 1
38-
#define SIX_VERSION_PATCH 14
38+
#define SIX_VERSION_MINOR 2
39+
#define SIX_VERSION_PATCH 0
3940
//#define SIX_VERSION_BUILD 0
4041
//#define SIX_VERSION CODA_OSS_MAKE_VERSION_MMPB(SIX_VERSION_MAJOR, SIX_VERSION_MINOR, SIX_VERSION_PATCH, SIX_VERSION_BUILD)
4142
#define SIX_VERSION CODA_OSS_MAKE_VERSION_MMP(SIX_VERSION_MAJOR, SIX_VERSION_MINOR, SIX_VERSION_PATCH)
@@ -49,4 +50,4 @@ namespace six
4950
//constexpr auto version_build = CODA_OSS_GET_VERSION_BUILD(SIX_VERSION);
5051
}
5152

52-
#endif // SIX_Version_h_INCLUDED_
53+
#endif // SIX_six_Version_h_INCLUDED_

0 commit comments

Comments
 (0)