Skip to content

Commit da901e3

Browse files
committed
Bump version number
1 parent a8d5fd1 commit da901e3

File tree

6 files changed

+24
-3
lines changed

6 files changed

+24
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
app.rb
1717
test.rb
1818
examples.txt
19-
/lib/fancybox2/migrations/test/
19+
/spec/config/test/

lib/fancybox2/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Fancybox2
4-
VERSION = '0.0.6'
4+
VERSION = '0.0.7'
55
end
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
def up
2+
puts "2020 UP"
3+
end
4+
5+
def down
6+
puts "2020 DOWN"
7+
end
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
def up
2+
puts "2021 UP"
3+
end
4+
5+
def down
6+
puts "2021 DOWN"
7+
end
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
def up
2+
puts "2022 UP"
3+
end
4+
5+
def down
6+
puts "2022 DOWN"
7+
end

spec/spec_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# config.example_status_persistence_file_path = 'examples.txt'
1515

1616
# Ensure no previous (zombie) mosquitto instance is still alive.
17-
# This can happen, for instance, when the test suite crashes due to a syntax error, and so Mosquitto.stop is not called
17+
# This can happen, for instance, when the mock suite crashes due to a syntax error, and so Mosquitto.stop is not called
1818
Mosquitto.kill_zombies
1919

2020
config.before(:suite) do

0 commit comments

Comments
 (0)