Skip to content

Commit a7f90d7

Browse files
release: 0.3.2
1 parent 3e2dece commit a7f90d7

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build-csharp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
run: echo echo "$(pwd)" && find . -path "src/*/*.*sproj"
6464

6565
- name: Pack
66-
run: find . -path "./src/*/*.*sproj" | xargs -n 1 -t dotnet pack --no-build --verbosity normal -c Release -o artifacts/ /p:Version=0.3.2-preview-${{ steps.rev.outputs.count }}
66+
run: find . -path "./src/*/*.*sproj" | xargs -n 1 -t dotnet pack --no-build --verbosity normal -c Release -o artifacts/ /p:Version=0.3.2
6767

6868
- name: Upload build artifacts
6969
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4

.github/workflows/build-js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
run: npm run build
8080

8181
- name: Publish vista-sdk
82-
run: cp ./README.md ./packages/vista-sdk/README.md; cd packages/vista-sdk; npm version $(node -p "require('./package.json').version").${{ steps.rev.outputs.count }}; npm publish --access public --tag preview --provenance;
82+
run: cp ./README.md ./packages/vista-sdk/README.md; cd packages/vista-sdk; npm version $(node -p "require('./package.json').version") --allow-same-version; npm publish --access public --tag latest --provenance;
8383

8484
- name: Publish vista-sdk-experimental
85-
run: cd packages/vista-sdk-experimental; npm version $(node -p "require('./package.json').version").${{ steps.rev.outputs.count }}; npm publish --access public --tag preview --provenance;
85+
run: cd packages/vista-sdk-experimental; npm version $(node -p "require('./package.json').version") --allow-same-version; npm publish --access public --tag latest --provenance;

.github/workflows/build-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616

1717
env:
1818
CI_BUILD: true
19-
BASE_VERSION: "0.3.2-preview"
19+
BASE_VERSION: "0.3.2"
2020

2121
jobs:
2222
test:
@@ -132,7 +132,7 @@ jobs:
132132
env:
133133
REV: ${{ steps.rev.outputs.count }}
134134
run: |
135-
VERSION="${BASE_VERSION}-${REV}"
135+
VERSION="${BASE_VERSION}"
136136
echo "Setting version to: $VERSION"
137137
sed -i "s/__version__ = \".*\"/__version__ = \"$VERSION\"/" python/src/vista_sdk/__init__.py
138138
cat python/src/vista_sdk/__init__.py

js/packages/vista-sdk-experimental/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dnv-vista-sdk-experimental",
3-
"version": "0.3.2-preview",
3+
"version": "0.3.2",
44
"description": "Experimental extensions for the DNV Vista SDK – PMS Local IDs and ISO19848/19847 inspired transport models.",
55
"repository": {
66
"type": "git",

js/packages/vista-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dnv-vista-sdk",
3-
"version": "0.3.2-preview",
3+
"version": "0.3.2",
44
"description": "The Vista SDK packages codify the rules and principles of DNV Vessel Information Structure (VIS) and ISO19848/19847 standards to enable and support users and implementers.",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)