Bump version to 2.1.0

This commit is contained in:
Samuel Beaulieu 2021-12-08 12:18:49 -06:00
parent f6bbef4245
commit aa380694e3
No known key found for this signature in database
GPG key ID: 12030F74136D0F34
2 changed files with 2 additions and 2 deletions

View file

@ -244,7 +244,7 @@ module Vmpooler
# DEPRECATED if a provider does not implement the new method, it will hit this base class method # DEPRECATED if a provider does not implement the new method, it will hit this base class method
# and return a deprecation message # and return a deprecation message
def purge_unconfigured_folders(_deprecated, _deprecated2, whitelist) def purge_unconfigured_folders(_deprecated, _deprecated2, whitelist)
logger.log('s', "[!] purge_unconfigured_folders was renamed to purge_unconfigured_resources, please update your provider implementation") logger.log('s', '[!] purge_unconfigured_folders was renamed to purge_unconfigured_resources, please update your provider implementation')
purge_unconfigured_resources(whitelist) purge_unconfigured_resources(whitelist)
end end
end end

View file

@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
module Vmpooler module Vmpooler
VERSION = '2.0.0' VERSION = '2.1.0'
end end