Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog for 1.0.0 #614

Merged
merged 2 commits into from
Jul 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Changelog
* [1.1.0](#110)
* [1.0.0](#100)
* [0.9.0](#090)
* [0.8.0](#080)
Expand All @@ -19,13 +20,35 @@

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

## 1.1.0
* ### Merged Pull Requests
* ...

* ### Resolved Issues
* ...

* ### Known Issues
* ...

## 1.0.0
* ### Merged Pull Requests
* ...
* [Full changelog: 0.9.0...1.0.0](https://github.com/ni/nidaqmx-python/compare/0.9.0...1.0.0)

* ### Resolved Issues
* [38: No spacing in raw-read function names](https://github.com/ni/nidaqmx-python/issues/38)
* [384: Support internationalization](https://github.com/ni/nidaqmx-python/issues/384)
* [392: Indexing PhysicalChannelCollection fails for slices and strings containing a list/range of channels](https://github.com/ni/nidaqmx-python/issues/392)
* [482: Default argument values for bridge create channel functions are unusable](https://github.com/ni/nidaqmx-python/issues/482)

* ### Major Changes
* Add support for strain calibration (offset nulling and shunt calibration)
* Add support for DAQmx calibration info properties
* Add support for WaitForValidTimestamp
* Fix naming issues:
* Rename `ShuntCalSelect.AAND_B` to `A_AND_B`.
* Automate Driver Install Experience within nidaqmx Module
* Update libtime to accept time before 1970

WayneDroid marked this conversation as resolved.
Show resolved Hide resolved
* ### Known Issues
* ...

Expand Down Expand Up @@ -72,7 +95,7 @@ All notable changes to this project will be documented in this file.
* Added multiple test cases to improve the overall test coverage.

* ### Known Issues
* Comparisons between DAQmx object instances do not take gRPC remoting into account. For example, `Device("Dev1")` refers to a local device and `Device("Dev1", grpc_options=...)` refers to a remote device, but they are considered equal. Likewise, two instances of `Device("Dev1", grpc_options=...)` with different remote hosts are considered equal.
* Comparisons between DAQmx object instances do not take gRPC remoting into account. For example, `Device("Dev1")` refers to a local device and `Device("Dev1", grpc_options=...)` refers to a remote device, but they are considered equal. Likewise, two instances of `Device("Dev1", grpc_options=...)` with different remote hosts are considered equal.

## 0.7.0

Expand Down
Loading