Skip to content

Commit 8636b8b

Browse files
authored
Merge pull request #1313 from ni/release_1_2
Release nitclk 1.0, nidigital 0.5, and 1.2 of other modules
2 parents 601b602 + 9c72cae commit 8636b8b

Some content is hidden

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

70 files changed

+90
-114
lines changed

CHANGELOG.md

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

3-
* [Unreleased](#unreleased)
3+
* [1.2.0](#120---2020-03-06)
44
* [1.1.5](#115---2019-11-22)
55
* [1.1.4](#114---2019-11-19)
66
* [1.1.3](#113---2019-10-21)
@@ -20,7 +20,7 @@
2020

2121
All notable changes to this project will be documented in this file.
2222

23-
## [Unreleased]
23+
## 1.2.0 - 2020-03-06
2424
* ### ALL
2525
* #### Added
2626
* Zip file per driver for all examples and any helper files
@@ -33,18 +33,6 @@ All notable changes to this project will be documented in this file.
3333
* Python 2.7 support - [Python Software Foundation version status](https://devguide.python.org/#status-of-python-branches)
3434
* Python 3.4 support - [Python Software Foundation PEP 429](https://www.python.org/dev/peps/pep-0429/)
3535
* PyPy and PyPy3 support [#1271](https://github.com/ni/nimi-python/issues/1271)
36-
* ### NI-DMM
37-
* #### Added
38-
* #### Changed
39-
* #### Removed
40-
* ### NI-ModInst
41-
* #### Added
42-
* #### Changed
43-
* #### Removed
44-
* ### NI-Switch
45-
* #### Added
46-
* #### Changed
47-
* #### Removed
4836
* ### NI-DCPower
4937
* #### Added
5038
* `create_advanced_sequence()` - [#504](https://github.com/ni/nimi-python/issues/504)
@@ -55,8 +43,6 @@ All notable changes to this project will be documented in this file.
5543
* `delete_advanced_sequence()`
5644
* `active_advanced_sequence`
5745
* `active_advanced_sequence_step`
58-
* #### Changed
59-
* #### Removed
6046
* ### NI-FGEN
6147
* #### Added
6248
* `nifgen.Session.import_attribute_configuration_file()`
@@ -69,15 +55,6 @@ All notable changes to this project will be documented in this file.
6955
* See documentation on how to call this function
7056
* Calling the previous way will log a DeprecationWarning to the warning subsystem
7157
* [#1300](https://github.com/ni/nimi-python/issues/1300)
72-
* #### Removed
73-
* ### NI-SCOPE
74-
* #### Added
75-
* #### Changed
76-
* #### Removed
77-
* ### NI Switch Executive
78-
* #### Added
79-
* #### Changed
80-
* #### Removed
8158
* ### NI-Digital Pattern Driver
8259
* #### Added
8360
* `conditional_jump_triggers` and `pattern_opcode_events` repeated capabilities - [#1191](https://github.com/ni/nimi-python/issues/1191), [#1192](https://github.com/ni/nimi-python/issues/1192)
@@ -91,7 +68,6 @@ All notable changes to this project will be documented in this file.
9168
* Removed `fetch_history_ram_cycle_pin_data` and `fetch_history_ram_scan_cycle_number`. They are not needed since `fetch_history_ram_cycle_information`
9269
was updated to return class instances that contains cycle pin data and scan cycle number - [#1071](https://github.com/ni/nimi-python/issues/1071)
9370
* ### NI-TClk
94-
* #### Added
9571
* #### Changed
9672
* Method parameters and properties that are time based now take or return a `datetime.timedelta` object
9773
* #### Removed

VERSION

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

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.1.6.dev0'
66+
release = '1.2.0'
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 here <https://github.com/ni/nimi-python/releases/download/1.1.5/nidcpower_examples.zip>`_
4+
`You can download all nidcpower examples here <https://github.com/ni/nimi-python/releases/download/1.2.0/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.2.0
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 here <https://github.com/ni/nimi-python/releases/download/1.1.5/nidigital_examples.zip>`_
4+
`You can download all nidigital examples here <https://github.com/ni/nimi-python/releases/download/1.2.0/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.4.0
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 here <https://github.com/ni/nimi-python/releases/download/1.1.5/nidmm_examples.zip>`_
4+
`You can download all nidmm examples here <https://github.com/ni/nimi-python/releases/download/1.2.0/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.2.0
1212

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

docs/nifgen/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 nifgen examples here <https://github.com/ni/nimi-python/releases/download/1.1.5/nifgen_examples.zip>`_
4+
`You can download all nifgen examples here <https://github.com/ni/nimi-python/releases/download/1.2.0/nifgen_examples.zip>`_
55

66
nifgen_arb_waveform.py
77
----------------------

0 commit comments

Comments
 (0)