From 6c820a137940c27620ab19bdaf1c38c8da6d65d4 Mon Sep 17 00:00:00 2001 From: Brian Thorne Date: Wed, 26 Apr 2023 10:00:01 +1200 Subject: [PATCH] Release version 4.2.0 (#1576) * Set version to 4.2.0 * Update CHANGELOG.md --------- Co-authored-by: zariiii9003 <52598363+zariiii9003@users.noreply.github.com> --- CHANGELOG.md | 4 ++-- can/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33cfc4849..66ce542ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,10 +25,10 @@ Features * Add support for version 2 TRC files and other TRC file enhancements (#1530). ### Type Annotations -* Export symbols to satisfy type checkers (#1547, #1551, #1558). +* Export symbols to satisfy type checkers (#1547, #1551, #1558, #1568). ### Interface Improvements -* Add ``__del__`` method to ``can.BusABC`` to automatically release resources (#1489). +* Add ``__del__`` method to ``can.BusABC`` to automatically release resources (#1489, #1564). * pcan: Update PCAN Basic to 4.6.2.753 (#1481). * pcan: Use select instead of polling on Linux (#1410). * socketcan: Use ip link JSON output in ``find_available_interfaces`` (#1478). diff --git a/can/__init__.py b/can/__init__.py index e8d7850ca..870bef73f 100644 --- a/can/__init__.py +++ b/can/__init__.py @@ -8,7 +8,7 @@ import logging from typing import Any, Dict -__version__ = "4.2.0rc0" +__version__ = "4.2.0" __all__ = [ "ASCReader", "ASCWriter",