From 7f85a65d25f36fb2c723374a6ca676b6039bcce4 Mon Sep 17 00:00:00 2001 From: David Peckham Date: Thu, 1 Feb 2024 12:28:05 -0500 Subject: [PATCH] patch 0.1.1 --- CHANGELOG.rst | 8 ++++++++ src/vin/__about__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e3c43f8..45088ac 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,14 @@ Changelog Versions follow `Semantic Versioning `_ +`0.1.1`_ - 2024-02-01 +--------------------- + +Changed +~~~~~~~ +* Removed None from return annotation for :meth:`.VIN.vds` and :meth:`.VIN.vis` +* Annotated :meth:`.VIN.model_year` to show that it returns int + `0.1.0`_ - 2024-02-01 --------------------- diff --git a/src/vin/__about__.py b/src/vin/__about__.py index ed641d1..9b3082b 100644 --- a/src/vin/__about__.py +++ b/src/vin/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2024-present David Peckham # # SPDX-License-Identifier: MIT -__version__ = "0.1.0" +__version__ = "0.1.1"