Skip to content

Commit 84be3bc

Browse files
authored
Post-nirfsg-1.0.1-release changes (#2156)
* bump nirfsg version to 1.0.2dev0 * generated files with version bump * Add nirfsg unreleased section to CHANGELOG
1 parent c7538ad commit 84be3bc

File tree

9 files changed

+18
-12
lines changed

9 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1690,9 +1690,15 @@
16901690

16911691
### nirfsg (NI-RFSG)
16921692

1693+
- [Unreleased](#nirfsg-unreleased)
16931694
- [1.0.1](#nirfsg-101---2026-01-09)
16941695
- [1.0.0](#nirfsg-100---2025-08-05)
16951696

1697+
#### [nirfsg] Unreleased
1698+
- Added
1699+
- Changed
1700+
- Removed
1701+
16961702
#### [nirfsg] 1.0.1 - 2026-01-09
16971703
- Changed
16981704
- Added default value for `module` parameter in `get_self_cal_last_date_and_time` and `get_self_calibration_temperature` methods to align with documentation and allow duck-typing

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.1'
66+
release = '1.0.2.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.1/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.1/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.1/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.1/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.1/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.1
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.1
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.1
1+
1.0.2.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.1'
5+
__version__ = '1.0.2.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.1"
80+
info['module']['version'] = "1.0.2.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: 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.1',
19+
version='1.0.2.dev0',
2020
description='NI-RFSG Python API',
2121
long_description=read_contents('README.rst'),
2222
long_description_content_type='text/x-rst',

src/nirfsg/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.1',
3+
'module_version': '1.0.2.dev0',
44
'development_status': '4 - Beta',
55
'latest_runtime_version_tested_against': '2025 Q3',
66
'initial_release_year': '2025',

0 commit comments

Comments
 (0)