From 2c5b565b9a11f6b06938abe6aeba92e9ffdd8f7e Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me> Date: Mon, 7 Aug 2023 14:36:48 -0400 Subject: [PATCH] Bumped version and added changelog notes --- CHANGELOG.md | 8 ++++++-- lib/apex/app_info.rb | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d88ce5..9411f8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ # Changelog -## 1.0.5 +## 2.0.0 -* Added FramePath class for handling the pathing portion of frames. +* Refactored handling of Frames completely, no longer backwards compatible +* Added Path, Entity, and Hop class for handling the pathing portion of frames. +* Moved unit tests over to RSpec +* Added testing with significant coverage +* Fixed IGate so it wont get stuck in an infinite loop when receiving data faster than it can process ## 1.0.4 diff --git a/lib/apex/app_info.rb b/lib/apex/app_info.rb index 64a2a98..9e3e8c9 100644 --- a/lib/apex/app_info.rb +++ b/lib/apex/app_info.rb @@ -1,3 +1,3 @@ module Apex - VERSION = "1.0.5" + VERSION = "2.0.0" end -- GitLab