Skip to content

Commit

Permalink
Update spec-version for beamlattice
Browse files Browse the repository at this point in the history
  • Loading branch information
martinweismann committed Aug 28, 2020
1 parent 42ca9db commit 8d4a912
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Include/NMR_Spec_Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ NMR_Spec_Version.h defines the current implementation version.
#define NMR_SPECVERSION_PRODUCTION_MICRO 2

#define NMR_SPECVERSION_BEAMLATTICE_MAJOR 1
#define NMR_SPECVERSION_BEAMLATTICE_MINOR 0
#define NMR_SPECVERSION_BEAMLATTICE_MICRO 4
#define NMR_SPECVERSION_BEAMLATTICE_MINOR 1
#define NMR_SPECVERSION_BEAMLATTICE_MICRO 0

#define NMR_SPECVERSION_SLICE_MAJOR 1
#define NMR_SPECVERSION_SLICE_MINOR 0
Expand Down
4 changes: 2 additions & 2 deletions Tests/CPP_Bindings/Source/Wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ namespace Lib3MF
wrapper->GetSpecificationVersion("http://schemas.microsoft.com/3dmanufacturing/beamlattice/2017/02", bIsSupported, nMajor, nMinor, nMicro);
ASSERT_TRUE(bIsSupported);
ASSERT_EQ(nMajor, 1);
ASSERT_EQ(nMinor, 0);
ASSERT_EQ(nMicro, 4);
ASSERT_EQ(nMinor, 1);
ASSERT_EQ(nMicro, 0);

wrapper->GetSpecificationVersion("http://schemas.microsoft.com/3dmanufacturing/slice/2015/07", bIsSupported, nMajor, nMinor, nMicro);
ASSERT_TRUE(bIsSupported);
Expand Down

0 comments on commit 8d4a912

Please sign in to comment.