Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:

env:
LIBRARY_BASE_REPO: NTIA/p2108
LIBRARY_RELEASE_TAG: v1.0-rc.1
LIBRARY_RELEASE_TAG: v1.1
LIBRARY_DESTINATION_DIRECTORY: 'src/ITS/ITU/PSeries/P2108/'

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:

env:
LIBRARY_BASE_REPO: NTIA/p2108
LIBRARY_RELEASE_TAG: v1.0-rc.1
LIBRARY_RELEASE_TAG: v1.1
LIBRARY_DESTINATION_DIRECTORY: 'src/ITS/ITU/PSeries/P2108/'

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
"resource_type": "publication-softwaredocumentation"
}
],
"version": "1.0.1"
"version": "1.1.0"
}
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ keywords:
- rf
- clutter
- itu
version: 1.0.1
version: 1.1.0
2 changes: 1 addition & 1 deletion src/ITS/ITU/PSeries/P2108/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Version X.Y.Z: X.Y is the version of the C++ source,
# and Z is the version of this Python wrapper
__version__ = "1.0.1"
__version__ = "1.1.0"

from .p2108 import (
AeronauticalStatisticalModel,
Expand Down
2 changes: 1 addition & 1 deletion src/ITS/ITU/PSeries/P2108/p2108.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .proplib_loader import PropLibCDLL

# Load the shared library
lib = PropLibCDLL("P2108-1.0")
lib = PropLibCDLL("P2108-1.1")

# Define function prototypes
lib.AeronauticalStatisticalModel.restype = c_int
Expand Down
Loading