Skip to content

Commit 0331625

Browse files
Release nirfsa 1.0.0 (#2198)
1 parent cff22c9 commit 0331625

10 files changed

Lines changed: 14 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1727,13 +1727,11 @@
17271727

17281728
### nirfsa (NI-RFSA)
17291729

1730-
- [Unreleased](#nirfsa-unreleased)
1730+
- [1.0.0](#nirfsa-100---2026-08-20)
17311731

1732-
#### [nirfsa] Unreleased
1732+
#### [nirfsa] 1.0.0 - 2026-08-20
17331733
- Added
17341734
- All methods and attributes which are part of first release
1735-
- Changed
1736-
- Removed
17371735

17381736
### nirfsg (NI-RFSG)
17391737

docs/nirfsa/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
# built documents.
6464
#
6565
# The full version, including alpha/beta/rc tags.
66-
release = '1.0.0.dev0'
66+
release = '1.0.0'
6767
# The short X.Y version.
6868
version = release[:3]
6969

docs/nirfsa/examples.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Examples
22
========
33

4-
`You can download all nirfsa examples for latest version here <https://github.com/ni/nimi-python/releases/download/nirfsa-1.0.0/nirfsa_examples.zip>`_
4+
`You can download all nirfsa examples here <https://github.com/ni/nimi-python/releases/download/nirfsa-1.0.0/nirfsa_examples.zip>`_
55

66
nirfsa_getting_started_iq.py
77
----------------------------
@@ -10,7 +10,7 @@ nirfsa_getting_started_iq.py
1010
:language: python
1111
:linenos:
1212
:encoding: utf8
13-
:caption: `(nirfsa_getting_started_iq.py) <https://github.com/ni/nimi-python/blob/master/src/nirfsa/examples/nirfsa_getting_started_iq.py>`_
13+
:caption: `(nirfsa_getting_started_iq.py) <https://github.com/ni/nimi-python/blob/nirfsa-1.0.0/src/nirfsa/examples/nirfsa_getting_started_iq.py>`_
1414

1515
nirfsa_getting_started_spectrum.py
1616
----------------------------------
@@ -19,5 +19,5 @@ nirfsa_getting_started_spectrum.py
1919
:language: python
2020
:linenos:
2121
:encoding: utf8
22-
:caption: `(nirfsa_getting_started_spectrum.py) <https://github.com/ni/nimi-python/blob/master/src/nirfsa/examples/nirfsa_getting_started_spectrum.py>`_
22+
:caption: `(nirfsa_getting_started_spectrum.py) <https://github.com/ni/nimi-python/blob/nirfsa-1.0.0/src/nirfsa/examples/nirfsa_getting_started_spectrum.py>`_
2323

docs/nirfsa/installation.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ As a prerequisite to using the **nirfsa** module, you must install the NI-RFSA r
88

99
The nimi-python modules (i.e. for **NI-RFSA**) can be installed with `pip <http://pypi.python.org/pypi/pip>`_::
1010

11-
$ python -m pip install nirfsa
11+
$ python -m pip install nirfsa~=1.0.0
1212

1313

generated/nirfsa/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ As a prerequisite to using the **nirfsa** module, you must install the NI-RFSA r
104104

105105
The nimi-python modules (i.e. for **NI-RFSA**) can be installed with `pip <http://pypi.python.org/pypi/pip>`_::
106106

107-
$ python -m pip install nirfsa
107+
$ python -m pip install nirfsa~=1.0.0
108108

109109

110110
Contributing

generated/nirfsa/nirfsa/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
1.0.0.dev0
1+
1.0.0
22

generated/nirfsa/nirfsa/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file was generated
33

44

5-
__version__ = '1.0.0.dev0'
5+
__version__ = '1.0.0'
66

77
from nirfsa.enums import * # noqa: F403,F401,H303
88
from nirfsa.errors import DriverWarning # noqa: F401
@@ -85,7 +85,7 @@ def is_venv():
8585
info['driver']['name'] = "NI-RFSA"
8686
info['driver']['version'] = driver_version
8787
info['module']['name'] = 'nirfsa'
88-
info['module']['version'] = "1.0.0.dev0"
88+
info['module']['version'] = "1.0.0"
8989
info['python']['version'] = sys.version
9090
info['python']['bits'] = '64' if is_python_64bit() else '32'
9191
info['python']['is_venv'] = is_venv()

generated/nirfsa/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def read_contents(file_to_read):
1616
setup(
1717
name=pypi_name,
1818
zip_safe=True,
19-
version='1.0.0.dev0',
19+
version='1.0.0',
2020
description='NI-RFSA Python API',
2121
long_description=read_contents('README.rst'),
2222
long_description_content_type='text/x-rst',

src/nirfsa/metadata/config_addon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# We need to maintain the version here since it needs to be updated by the build process on GitHub
22
config_additional_config = {
3-
'module_version': '1.0.0.dev0',
3+
'module_version': '1.0.0',
44
'development_status': '4 - Beta',
55
'latest_runtime_version_tested_against': '2026 Q3',
66
'initial_release_year': '2026',

tools/build_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter, argparse.RawDescri
2121

2222

2323
def main():
24-
drivers_to_update = ['nidcpower', 'nidigital', 'nidmm', 'nifake', 'niswitch', 'nimodinst', 'nifgen', 'nirfsg', 'niscope', 'nise', 'nitclk']
24+
drivers_to_update = ['nidcpower', 'nidigital', 'nidmm', 'nifake', 'niswitch', 'nimodinst', 'nifgen', 'nirfsa', 'nirfsg', 'niscope', 'nise', 'nitclk']
2525

2626
# Setup the required arguments for this script
2727
usage = """Release script

0 commit comments

Comments
 (0)