lib/vcr/version.rb in vcr-6.0.0 vs lib/vcr/version.rb in vcr-6.1.0
- old
+ new
@@ -8,11 +8,11 @@
# * `minor` [Integer] The minor version.
# * `patch` [Integer] The patch version.
# * `parts` [Array<Integer>] List of the version parts.
def version
@version ||= begin
- string = '6.0.0'
+ string = +'6.1.0'
def string.parts
split('.').map { |p| p.to_i }
end
@@ -26,9 +26,9 @@
def string.patch
parts[2]
end
- string
+ string.freeze
end
end
end