From eab523e8fb684e6563e5063b745577e71b5be5ba Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me> Date: Tue, 15 Aug 2023 22:34:13 -0400 Subject: [PATCH] Bumped version post-release --- CHANGELOG.md | 3 +++ lib/kiss/app_info.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b0d988..fb0f67e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ # Changelog +## 2.0.1 + ## 2.0.0 * Moved abstraction over to abstractify library. * Added more parsing methods so entry points now take strings rather than KISS encoded data. * Added errors where appropriate, for example writing invalid frames now throw an IOError. +* The write and read methods now take frames in the form of a map of strings, all encoding is now handled by the library. ## 1.0.3 diff --git a/lib/kiss/app_info.rb b/lib/kiss/app_info.rb index e3b2e0e..78f5ac8 100644 --- a/lib/kiss/app_info.rb +++ b/lib/kiss/app_info.rb @@ -1,3 +1,3 @@ module Kiss - VERSION = "2.0.0" + VERSION = "2.0.1" end -- GitLab