From 654b10984221e3e2f510d4aa1fb8d3f5f61abd83 Mon Sep 17 00:00:00 2001 From: Jeffrey Martin Date: Tue, 13 Jul 2021 15:18:25 -0500 Subject: [PATCH] Rails 6.1 upgrade represents a minor version bump Due to compatibility requirements this upgrade needs an explicit version bump. --- Gemfile.lock | 2 +- lib/metasploit/framework/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 98472c08e60a3..5b9d196abd89c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - metasploit-framework (6.0.55) + metasploit-framework (6.1.0) actionpack (~> 6.0) activerecord (~> 6.0) activesupport (~> 6.0) diff --git a/lib/metasploit/framework/version.rb b/lib/metasploit/framework/version.rb index dda7923dd1583..06439e755f4eb 100644 --- a/lib/metasploit/framework/version.rb +++ b/lib/metasploit/framework/version.rb @@ -30,7 +30,7 @@ def self.get_hash end end - VERSION = "6.0.55" + VERSION = "6.1.0" MAJOR, MINOR, PATCH = VERSION.split('.').map { |x| x.to_i } PRERELEASE = 'dev' HASH = get_hash