Skip to content

Commit d14f2a2

Browse files
committed
Bumping up version numbers of SIX and CSM plugin. Fixing how SIX library filenames were getting set - they include the version number again.
1 parent 25ffc5d commit d14f2a2

11 files changed

Lines changed: 13 additions & 13 deletions

File tree

six/modules/c++/cphd/wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ options = configure = distclean = lambda p: None
77

88
def build(bld):
99
modArgs = globals()
10-
modArgs['SIX_VERSION'] = bld.env['SIX_VERSION']
10+
modArgs['VERSION'] = bld.env['SIX_VERSION']
1111
bld.module(**modArgs)

six/modules/c++/scene/wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ options = configure = distclean = lambda p: None
77

88
def build(bld):
99
modArgs = globals()
10-
modArgs['SIX_VERSION'] = bld.env['SIX_VERSION']
10+
modArgs['VERSION'] = bld.env['SIX_VERSION']
1111
bld.module(**modArgs)

six/modules/c++/six.convert/wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ options = configure = distclean = lambda p: None
77

88
def build(bld):
99
modArgs = globals()
10-
modArgs['SIX_VERSION'] = bld.env['SIX_VERSION']
10+
modArgs['VERSION'] = bld.env['SIX_VERSION']
1111
bld.module(**modArgs)
1212

six/modules/c++/six.sicd/wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ options = configure = distclean = lambda p: None
99

1010
def build(bld):
1111
modArgs = globals()
12-
modArgs['SIX_VERSION'] = bld.env['SIX_VERSION']
12+
modArgs['VERSION'] = bld.env['SIX_VERSION']
1313
bld.module(**modArgs)
1414

1515
# install the schemas

six/modules/c++/six.sidd/wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ options = configure = distclean = lambda p: None
77

88
def build(bld):
99
modArgs = globals()
10-
modArgs['SIX_VERSION'] = bld.env['SIX_VERSION']
10+
modArgs['VERSION'] = bld.env['SIX_VERSION']
1111
bld.module(**modArgs)
1212

1313
# install the schemas

six/modules/c++/six/wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ options = configure = distclean = lambda p: None
77

88
def build(bld):
99
modArgs = globals()
10-
modArgs['SIX_VERSION'] = bld.env['SIX_VERSION']
10+
modArgs['VERSION'] = bld.env['SIX_VERSION']
1111
bld.module(**modArgs)

six/modules/wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ def options(opt):
55
opt.recurse()
66

77
def configure(conf):
8-
conf.env['SIX_VERSION'] = '2.2.7'
8+
conf.env['SIX_VERSION'] = '2.2.8'
99

1010
# This allows us to build XML_DATA_CONTENT statically so that users don't
1111
# have to set NITF_PLUGIN_PATH

six/projects/csm/source/SICDSensorModel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace six
3535
{
3636
namespace CSM
3737
{
38-
const csm::Version SICDSensorModel::VERSION(1, 1, 3);
38+
const csm::Version SICDSensorModel::VERSION(1, 1, 4);
3939
const char SICDSensorModel::NAME[] = "SICD_SENSOR_MODEL";
4040

4141
SICDSensorModel::SICDSensorModel(const csm::Isd& isd,

six/projects/csm/source/SIDDSensorModel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace six
3535
{
3636
namespace CSM
3737
{
38-
const csm::Version SIDDSensorModel::VERSION(1, 1, 3);
38+
const csm::Version SIDDSensorModel::VERSION(1, 1, 4);
3939
const char SIDDSensorModel::NAME[] = "SIDD_SENSOR_MODEL";
4040

4141
SIDDSensorModel::SIDDSensorModel(const csm::Isd& isd,

six/projects/csm/source/SIXPlugin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ namespace six
3737
namespace CSM
3838
{
3939
const char SIXPlugin::PLUGIN_NAME[] = "SIX";
40-
const char SIXPlugin::MANUFACTURER[] = "MDAUS";
41-
const char SIXPlugin::RELEASE_DATE[] = "20161223";
40+
const char SIXPlugin::MANUFACTURER[] = "Radiant Solutions";
41+
const char SIXPlugin::RELEASE_DATE[] = "20180818";
4242
const size_t SIXPlugin::SICD_MODEL_INDEX;
4343
const size_t SIXPlugin::SIDD_MODEL_INDEX;
4444

0 commit comments

Comments
 (0)