From 79df1b100f2b95db855ec9f684f3e6990b4e3649 Mon Sep 17 00:00:00 2001 From: Joo Liang Cheah Date: Fri, 30 Aug 2024 14:48:21 +0800 Subject: [PATCH] Update changelog 101 (#631) * Update CHANGELOG for 1.0.1 * added known issues --- CHANGELOG.md | 16 ++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b404906..ff37670b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # Changelog * [1.1.0](#110) +* [1.0.1](#101) * [1.0.0](#100) * [0.9.0](#090) * [0.8.0](#080) @@ -30,6 +31,21 @@ All notable changes to this project will be documented in this file. * ### Known Issues * ... +## 1.0.1 +* ### Merged Pull Requests + * [Full changelog: 1.0.0...1.0.1](https://github.com/ni/nidaqmx-python/compare/1.0.0...1.0.1) + +* ### Resolved Issues + * [540: Task.wait_for_valid_timestamp doesn't return the timestamp](https://github.com/ni/nidaqmx-python/issues/540) + * [606: CERTIFICATE_VERIFY_FAILED occurs when executing installdriver command on Windows system](https://github.com/ni/nidaqmx-python/issues/606) + * [615: Onboard device memory overflow](https://github.com/ni/nidaqmx-python/issues/615) + * [623: installdriver CLI doesn't prompt or indicate what versions are being downloaded/installed on a clean system](https://github.com/ni/nidaqmx-python/issues/623) + +* ### Known Issues + * [613: InStream.logging_file_path setter type hint is not effective](https://github.com/ni/nidaqmx-python/issues/613) + * [620: InStream.get_channels_buffer_size uses wrong encoding](https://github.com/ni/nidaqmx-python/issues/620) + * [621: InStream.get_channels_buffer_size should not be public](https://github.com/ni/nidaqmx-python/issues/621) + ## 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) diff --git a/pyproject.toml b/pyproject.toml index 5b4b9e93..04a7f642 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nidaqmx" -version = "1.0.1" +version = "1.1.0" license = "MIT" description = "NI-DAQmx Python API" authors = ["NI "]