remove a debug statement preventing the deployment of a site + bump version to 2.4.0.rc2

Didier Lafforgue committed Mar 12, 2018
commit dba61ccf686cf6c9ae753b3ed204691ebe41fb7a
Showing 3 changed files with 2 additions and 4 deletions
locomotive/wagon/commands/push_sub_commands/push_pages_command.rb b/lib/locomotive/wagon/commands/push_sub_commands/push_pages_command.rb +0 -2
@@ @@ -1,5 +1,3 @@
- require 'byebug'
-
module Locomotive::Wagon
class PushPagesCommand < PushBaseCommand
locomotive/wagon/version.rb b/lib/locomotive/wagon/version.rb +1 -1
@@ @@ -1,5 +1,5 @@
module Locomotive
module Wagon
- VERSION = '2.4.0.rc1'
+ VERSION = '2.4.0.rc2'
end
end
spec/integration/cli_spec.rb +1 -1
@@ @@ -10,7 +10,7 @@ describe Locomotive::Wagon::CLI do
describe '#version' do
let(:command) { Locomotive::Wagon::CLI::Main.start(['version']) }
- it { is_expected.to match /^2.3.0/ }
+ it { is_expected.to match /^2.4.0/ }
end