From 47f10f9b8f277f6079c93d9a4dc31f8e0cfe9ce4 Mon Sep 17 00:00:00 2001 From: Dylan Thacker-Smith Date: Tue, 16 Jun 2020 09:35:08 -0400 Subject: [PATCH] Release v1.1.6 --- ar_transaction_changes.gemspec | 1 + lib/ar_transaction_changes/version.rb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ar_transaction_changes.gemspec b/ar_transaction_changes.gemspec index b65809b..63b6b40 100644 --- a/ar_transaction_changes.gemspec +++ b/ar_transaction_changes.gemspec @@ -11,6 +11,7 @@ Gem::Specification.new do |gem| gem.description = %q{Solves the problem of trying to get all the changes to an object during a transaction in an after_commit callbacks.} gem.summary = %q{Store transaction changes for active record objects} gem.homepage = "https://github.com/dylanahsmith/ar_transaction_changes" + gem.license = "MIT" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } diff --git a/lib/ar_transaction_changes/version.rb b/lib/ar_transaction_changes/version.rb index 4c4acc6..e183d7c 100644 --- a/lib/ar_transaction_changes/version.rb +++ b/lib/ar_transaction_changes/version.rb @@ -1,3 +1,3 @@ module ArTransactionChanges - VERSION = "1.1.5" + VERSION = "1.1.6" end