Skip to content

Commit 758e7a0

Browse files
authored
Release nidigital 0.9.2 and 1.3.2 of other modules (#1522)
* Update CHANGELOG.md * Update version in config_addon.py and LATEST_RELEASE * Update generated files
1 parent 98698a8 commit 758e7a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+91
-124
lines changed

CHANGELOG.md

Lines changed: 2 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
* [Unreleased](#unreleased)
3+
* [1.3.2](#132---2020-09-18)
44
* [1.3.1](#131---2020-06-08)
55
* [1.3.0](#130---2020-05-21)
66
* [1.2.1](#121---2020-04-21)
@@ -24,13 +24,11 @@
2424

2525
All notable changes to this project will be documented in this file.
2626

27-
## Unreleased
27+
## 1.3.2 - 2020-09-18
2828
* ### ALL
29-
* #### Added
3029
* #### Changed
3130
* Fix [#1491](https://github.com/ni/nimi-python/issues/1491): import_attribute_configuration_buffer() fails intermittently when `list` or `array.array` is passed in.
3231
* Update "Driver Version Tested Against", in documentation, with latest versions installed on nimi-bot. The version is 20.5.0 for NI-DCPower, NI-SWITCH, and NI-DMM. no changes on other drivers.
33-
* #### Removed
3432
* ### `nidcpower` (NI-DCPower)
3533
* #### Added
3634
* API parity with NI-DCPower 20.5.0 by adding measurement autoranging threshold range support, for which the following properties are added:
@@ -42,24 +40,6 @@ All notable changes to this project will be documented in this file.
4240
* `autorange_minimum_current_range`
4341
* `autorange_minimum_voltage_range`
4442
* `autorange_threshold_mode`
45-
* #### Changed
46-
* #### Removed
47-
* ### `nidigital` (NI-Digital Pattern Driver)
48-
* #### Added
49-
* #### Changed
50-
* #### Removed
51-
* ### `nidmm` (NI-DMM)
52-
* #### Added
53-
* #### Changed
54-
* #### Removed
55-
* ### `nifgen` (NI-FGEN)
56-
* #### Added
57-
* #### Changed
58-
* #### Removed
59-
* ### `nimodinst` (NI-ModInst)
60-
* #### Added
61-
* #### Changed
62-
* #### Removed
6343
* ### `niscope` (NI-SCOPE)
6444
* #### Added
6545
* New methods for getting calibration information. - [#1463](https://github.com/ni/nimi-python/issues/1463)
@@ -109,19 +89,6 @@ All notable changes to this project will be documented in this file.
10989
* #### Changed
11090
* Fix [#1509](https://github.com/ni/nimi-python/issues/1509): `channel` and `record` fields are swapped in `waveform_info` struct returned from niscope fetch methods
11191
* Fix [#1510](https://github.com/ni/nimi-python/issues/1510): `record` value in `waveform_info` struct returned from niscope fetch methods is wrong if `record_number` is non-zero
112-
* #### Removed
113-
* ### `niswitch` (NI-SWITCH)
114-
* #### Added
115-
* #### Changed
116-
* #### Removed
117-
* ### `nise` (NI Switch Executive)
118-
* #### Added
119-
* #### Changed
120-
* #### Removed
121-
* ### `nitclk` (NI-TClk)
122-
* #### Added
123-
* #### Changed
124-
* #### Removed
12592

12693

12794
## 1.3.1 - 2020-06-08

LATEST_RELEASE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.1
1+
1.3.2

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.2.dev0
1+
1.3.2

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

docs/nidcpower/examples.rst

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

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

66
nidcpower_advanced_sequence.py
77
------------------------------

docs/nidcpower/installation.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ As a prerequisite to using the nidcpower module, you must install the NI-DCPower
88

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

11-
$ python -m pip install nidcpower
11+
$ python -m pip install nidcpower~=1.3.2
1212

1313
Or **easy_install** from
1414
`setuptools <http://pypi.python.org/pypi/setuptools>`_::

docs/nidigital/examples.rst

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

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

66
nidigital_do_nothing.py
77
-----------------------

docs/nidigital/installation.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ As a prerequisite to using the nidigital module, you must install the NI-Digital
88

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

11-
$ python -m pip install nidigital
11+
$ python -m pip install nidigital~=0.9.2
1212

1313
Or **easy_install** from
1414
`setuptools <http://pypi.python.org/pypi/setuptools>`_::

docs/nidmm/examples.rst

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

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

66
nidmm_fetch_waveform.py
77
-----------------------

docs/nidmm/installation.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ As a prerequisite to using the nidmm module, you must install the NI-DMM runtime
88

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

11-
$ python -m pip install nidmm
11+
$ python -m pip install nidmm~=1.3.2
1212

1313
Or **easy_install** from
1414
`setuptools <http://pypi.python.org/pypi/setuptools>`_::

0 commit comments

Comments
 (0)