From 9a0f2d4ea26d2be24759f2bdbc6527514979fe03 Mon Sep 17 00:00:00 2001 From: Steffen Kockel Date: Fri, 6 Oct 2023 22:28:00 +0200 Subject: [PATCH] Bump version to 0.6.4 --- changelog | 10 ++++++++++ pyproject.toml | 2 +- src/pyduin/__init__.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/changelog b/changelog index 9a132aa..a560add 100644 --- a/changelog +++ b/changelog @@ -1,5 +1,15 @@ = pyduin changelog +== 0.6.4 + +* lots of tests added +* Pinfiles are Boardfiles now and the syntax changed again. +Since everything is tested, no regressions are expected +* Boards can be identified by lighting up a builtin LED +without the need to know, which pin it corresponds to on +the given board. +* Board support for sparkfun_promicro16 added + == 0.6.3 * Add test case for pin file diff --git a/pyproject.toml b/pyproject.toml index 3923137..bb88508 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ universal = true [project] name = "pyduin" -version = "0.6.3" +version = "0.6.4" description = "Extensive Arduino abstraction" readme = "README.md" authors = [ diff --git a/src/pyduin/__init__.py b/src/pyduin/__init__.py index 28fdfca..382893b 100644 --- a/src/pyduin/__init__.py +++ b/src/pyduin/__init__.py @@ -6,4 +6,4 @@ _utils = PyduinUtils() # pylint: disable=unused-variable -VERSION = "0.6.3" +VERSION = "0.6.4"