Skip to content

Commit c368947

Browse files
authored
Post-nirfsg-1.0.0-release changes (#2126)
* bump nirfsg version to 1.0.1.dev0 * removing development status override * generated files with version bump * Add nirfsg unreleased section to CHANGELOG --------- Co-authored-by: vnktshr21 <[email protected]>
1 parent 6769299 commit c368947

File tree

9 files changed

+19
-14
lines changed

9 files changed

+19
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1685,8 +1685,14 @@
16851685

16861686
### nirfsg (NI-RFSG)
16871687

1688+
- [Unreleased](#nirfsg-unreleased)
16881689
- [1.0.0](#nirfsg-100---2025-08-05)
16891690

1691+
#### [nirfsg] Unreleased
1692+
- Added
1693+
- Changed
1694+
- Removed
1695+
16901696
#### [nirfsg] 1.0.0 - 2025-08-05
16911697
- Added
16921698
- Initial release

docs/nirfsg/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'
66+
release = '1.0.1.dev0'
6767
# The short X.Y version.
6868
version = release[:3]
6969

docs/nirfsg/examples.rst

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

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

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

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

2424
nirfsg_script.py
2525
----------------
@@ -28,5 +28,5 @@ nirfsg_script.py
2828
:language: python
2929
:linenos:
3030
:encoding: utf8
31-
:caption: `(nirfsg_script.py) <https://github.com/ni/nimi-python/blob/nirfsg-1.0.0/src/nirfsg/examples/nirfsg_script.py>`_
31+
:caption: `(nirfsg_script.py) <https://github.com/ni/nimi-python/blob/master/src/nirfsg/examples/nirfsg_script.py>`_
3232

docs/nirfsg/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 **nirfsg** module, you must install the NI-RFSG r
88

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

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

1313

generated/nirfsg/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 **nirfsg** module, you must install the NI-RFSG r
104104

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

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

109109

110110
Contributing

generated/nirfsg/nirfsg/VERSION

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

generated/nirfsg/nirfsg/__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'
5+
__version__ = '1.0.1.dev0'
66

77
from nirfsg.enums import * # noqa: F403,F401,H303
88
from nirfsg.errors import DriverWarning # noqa: F401
@@ -77,7 +77,7 @@ def is_venv():
7777
info['driver']['name'] = "NI-RFSG"
7878
info['driver']['version'] = driver_version
7979
info['module']['name'] = 'nirfsg'
80-
info['module']['version'] = "1.0.0"
80+
info['module']['version'] = "1.0.1.dev0"
8181
info['python']['version'] = sys.version
8282
info['python']['bits'] = '64' if is_python_64bit() else '32'
8383
info['python']['is_venv'] = is_venv()

generated/nirfsg/setup.py

Lines changed: 2 additions & 2 deletions
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',
19+
version='1.0.1.dev0',
2020
description='NI-RFSG Python API',
2121
long_description=read_contents('README.rst'),
2222
long_description_content_type='text/x-rst',
@@ -35,7 +35,7 @@ def read_contents(file_to_read):
3535
'nitclk',
3636
],
3737
classifiers=[
38-
"Development Status :: 4 - Beta",
38+
"Development Status :: 3 - Alpha",
3939
"Intended Audience :: Developers",
4040
"Intended Audience :: Manufacturing",
4141
"Intended Audience :: Science/Research",

src/nirfsg/metadata/config_addon.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +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',
4-
'development_status': '4 - Beta',
3+
'module_version': '1.0.1.dev0',
54
'latest_runtime_version_tested_against': '2025 Q2',
65
'initial_release_year': '2025',
76
'custom_types': [

0 commit comments

Comments
 (0)