Skip to content

Commit 1bf93ea

Browse files
Merge pull request #4 from NTIA/v1.1.0-update
Update base library to v1.1
2 parents b3b2828 + 46e636f commit 1bf93ea

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/pytest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616

1717
env:
1818
LIBRARY_BASE_REPO: NTIA/p2108
19-
LIBRARY_RELEASE_TAG: v1.0-rc.1
19+
LIBRARY_RELEASE_TAG: v1.1
2020
LIBRARY_DESTINATION_DIRECTORY: 'src/ITS/ITU/PSeries/P2108/'
2121

2222
jobs:

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020

2121
env:
2222
LIBRARY_BASE_REPO: NTIA/p2108
23-
LIBRARY_RELEASE_TAG: v1.0-rc.1
23+
LIBRARY_RELEASE_TAG: v1.1
2424
LIBRARY_DESTINATION_DIRECTORY: 'src/ITS/ITU/PSeries/P2108/'
2525

2626
jobs:

.zenodo.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@
3333
"resource_type": "publication-softwaredocumentation"
3434
}
3535
],
36-
"version": "1.0.1"
36+
"version": "1.1.0"
3737
}

CITATION.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ keywords:
3131
- rf
3232
- clutter
3333
- itu
34-
version: 1.0.1
34+
version: 1.1.0

src/ITS/ITU/PSeries/P2108/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Version X.Y.Z: X.Y is the version of the C++ source,
22
# and Z is the version of this Python wrapper
3-
__version__ = "1.0.1"
3+
__version__ = "1.1.0"
44

55
from .p2108 import (
66
AeronauticalStatisticalModel,

src/ITS/ITU/PSeries/P2108/p2108.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .proplib_loader import PropLibCDLL
55

66
# Load the shared library
7-
lib = PropLibCDLL("P2108-1.0")
7+
lib = PropLibCDLL("P2108-1.1")
88

99
# Define function prototypes
1010
lib.AeronauticalStatisticalModel.restype = c_int

0 commit comments

Comments
 (0)