Skip to content

Commit 45a172b

Browse files
authored
Merge pull request #288 from ngageoint/update_version
Update version information
2 parents d285cc7 + 3622076 commit 45a172b

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

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.9-alpha'
8+
conf.env['SIX_VERSION'] = '2.2.9'
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, 4);
38+
const csm::Version SICDSensorModel::VERSION(1, 1, 5);
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, 4);
38+
const csm::Version SIDDSensorModel::VERSION(1, 1, 5);
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[] = "Radiant Solutions";
41-
const char SIXPlugin::RELEASE_DATE[] = "20180818";
40+
const char SIXPlugin::MANUFACTURER[] = "Maxar";
41+
const char SIXPlugin::RELEASE_DATE[] = "20190916";
4242
const size_t SIXPlugin::SICD_MODEL_INDEX;
4343
const size_t SIXPlugin::SIDD_MODEL_INDEX;
4444

six/projects/csm/wscript

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MAINTAINER = 'adam.sylvester@mdaus.com'
2-
VERSION = '1.1.2'
32
MODULE_DEPS = 'six.sicd six.sidd'
43
PLUGIN = 'CSM'
4+
PLUGIN_VERSION = '115'
55
REMOVEPLUGINPREFIX = True
66

77
import sys, os, re
@@ -46,7 +46,7 @@ def configure(conf):
4646
else:
4747
raise Errors.WafError('Unsupported platform %s' % sys.platform)
4848

49-
pluginVersion = '114'
49+
pluginVersion = '115'
5050
if Options.options.csm_version == '3.0.3':
5151
csmVersion = '303'
5252
else:

0 commit comments

Comments
 (0)