From fb898cae07c3fefc360fc8740fb4e1883e7f5699 Mon Sep 17 00:00:00 2001 From: Chris Oliver Date: Thu, 3 Aug 2023 09:00:13 -0500 Subject: [PATCH] Version bump --- CHANGELOG.md | 5 +++++ Gemfile.lock | 6 +++++- lib/signalman/version.rb | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 089bed9..6e0be78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ### Unreleased +### 0.1.1 + +* Skip SchemaMigration SQL events +* Safely ignore failures to create signalman_events when the table doesn't exist + ### 0.1.0 * Initial release with basic functionality diff --git a/Gemfile.lock b/Gemfile.lock index 2f09b81..98cf792 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - signalman (0.1.0) + signalman (0.1.1) rails (>= 7.0.0) GEM @@ -108,6 +108,8 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.9) + nokogiri (1.15.3-arm64-darwin) + racc (~> 1.4) nokogiri (1.15.3-x86_64-darwin) racc (~> 1.4) puma (6.3.0) @@ -156,6 +158,7 @@ GEM actionpack (>= 5.2) activesupport (>= 5.2) sprockets (>= 3.0.0) + sqlite3 (1.6.3-arm64-darwin) sqlite3 (1.6.3-x86_64-darwin) thor (1.2.2) timeout (0.4.0) @@ -176,6 +179,7 @@ GEM zeitwerk (2.6.9) PLATFORMS + arm64-darwin-22 x86_64-darwin-22 DEPENDENCIES diff --git a/lib/signalman/version.rb b/lib/signalman/version.rb index 14cf7db..d3479bc 100644 --- a/lib/signalman/version.rb +++ b/lib/signalman/version.rb @@ -1,3 +1,3 @@ module Signalman - VERSION = "0.1.0" + VERSION = "0.1.1" end