lib/addressable/version.rb in addressable-2.5.2 vs lib/addressable/version.rb in addressable-2.6.0

- old
+ new

@@ -1,5 +1,7 @@ +# frozen_string_literal: true + # encoding:utf-8 #-- # Copyright (C) Bob Aman # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -19,11 +21,11 @@ # Used to prevent the class/module from being loaded more than once if !defined?(Addressable::VERSION) module Addressable module VERSION MAJOR = 2 - MINOR = 5 - TINY = 2 + MINOR = 6 + TINY = 0 STRING = [MAJOR, MINOR, TINY].join('.') end end end