Skip to content

Commit 6d00877

Browse files
committed
Merge branch 'develop' of https://github.com/febiosoftware/FEBioWarp into develop
2 parents 2be58a8 + addde30 commit 6d00877

8 files changed

Lines changed: 25 additions & 25 deletions

File tree

.github/workflows/linux-pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ permissions:
1212
contents: read # This is required for actions/checkout
1313
jobs:
1414
call_workflow:
15-
uses: febiosoftware/febio-workflows/.github/workflows/linux-reusable-pull-request.yml@develop
15+
uses: febiosoftware/febio-workflows/.github/workflows/linux-reusable.yml@develop
1616
with:
17-
aws-ami-id: ami-05f23270883f04ec8
18-
aws-sg-id: sg-0ca7912782cf1538b
1917
package-name: febiowarp
2018
requires-sdk: true
19+
plugin: true
20+
publish: false
2121
secrets: inherit

.github/workflows/linux-push.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,10 @@ permissions:
1111
contents: read # This is required for actions/checkout
1212
jobs:
1313
call_workflow:
14-
uses: febiosoftware/febio-workflows/.github/workflows/linux-reusable-push.yml@develop
14+
uses: febiosoftware/febio-workflows/.github/workflows/linux-reusable.yml@develop
1515
with:
16-
aws-ami-id: ami-05f23270883f04ec8
17-
aws-sg-id: sg-0ca7912782cf1538b
18-
runTests: false
1916
package-name: febiowarp
2017
requires-sdk: true
18+
plugin: true
19+
publish: true
2120
secrets: inherit

.github/workflows/macos-pull-request.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ permissions:
1212
contents: read # This is required for actions/checkout
1313
jobs:
1414
call_workflow:
15-
uses: febiosoftware/febio-workflows/.github/workflows/macos-reusable-pull-request.yml@develop
15+
uses: febiosoftware/febio-workflows/.github/workflows/macos-reusable.yml@develop
1616
with:
1717
package-name: febiowarp
1818
requires-sdk: true
19+
plugin: true
20+
publish: false
1921
secrets: inherit

.github/workflows/macos-push.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ permissions:
1111

1212
jobs:
1313
call_workflow:
14-
uses: febiosoftware/febio-workflows/.github/workflows/macos-reusable-push.yml@develop
14+
uses: febiosoftware/febio-workflows/.github/workflows/macos-reusable.yml@develop
1515
with:
1616
package-name: febiowarp
1717
requires-sdk: true
18+
plugin: true
19+
publish: true
1820
secrets: inherit

.github/workflows/windows-pull-request.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@ permissions:
1212
contents: read # This is required for actions/checkout
1313
jobs:
1414
call_workflow:
15-
uses: febiosoftware/febio-workflows/.github/workflows/windows-reusable-pull-request.yml@develop
15+
uses: febiosoftware/febio-workflows/.github/workflows/windows-reusable.yml@develop
1616
with:
17-
register-runner-timeout: 10
18-
aws-ami-id: ami-0f458bdce73864228
19-
aws-sg-id: sg-0ca7912782cf1538b
20-
aws-instance-type: c5a.8xlarge
2117
package-name: febiowarp
2218
requires-sdk: true
19+
plugin: true
20+
publish: false
2321
secrets: inherit

.github/workflows/windows-push.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,10 @@ permissions:
1111
contents: read # This is required for actions/checkout
1212
jobs:
1313
call_workflow:
14-
uses: febiosoftware/febio-workflows/.github/workflows/windows-reusable-push.yml@develop
14+
uses: febiosoftware/febio-workflows/.github/workflows/windows-reusable.yml@develop
1515
with:
16-
aws-ami-id: ami-0f458bdce73864228
17-
aws-sg-id: sg-0ca7912782cf1538b
18-
aws-instance-type: c5a.8xlarge
19-
runTests: false
2016
package-name: febiowarp
2117
requires-sdk: true
18+
plugin: true
19+
publish: true
2220
secrets: inherit

FEWarp/FEWarp.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
//
33

44
#include "stdafx.h"
5+
#include "version.h"
56
#include <FECore/FECoreKernel.h>
67
#include "FEWarpImageConstraint.h"
78
#include "FEWarpImageConstraint2.h"
@@ -51,9 +52,9 @@ FECORE_EXPORT void PluginInitialize(FECoreKernel& febio)
5152
//-----------------------------------------------------------------------------
5253
FECORE_EXPORT void GetPluginVersion(int& maj, int& min, int& patch)
5354
{
54-
maj = 2;
55-
min = 0;
56-
patch = 0;
55+
maj = VERSION;
56+
min = SUBVERSION;
57+
patch = SUBSUBVERSION;
5758
}
5859

5960
//-----------------------------------------------------------------------------

FEWarp/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
22

3-
#define FEWARP_VERSION 1
4-
#define FEWARP_SUBVERSION 0
5-
#define FEWARP_SUBSUBVERSION 0
3+
#define VERSION 1
4+
#define SUBVERSION 0
5+
#define SUBSUBVERSION 0

0 commit comments

Comments
 (0)