diff --git a/CHANGELOG.md b/CHANGELOG.md index 54c2304..cabb7a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,25 +1,5 @@ # Changelog -## [1.1.3] - -- Update the CD to look for version file in all sub-folders - -## [1.1.2] - -- Publish new Gem Version with CD - -## [1.1.1] - -- Build Gem with ruby 3.2.2 and remove mfa for gem publishing CD - -## [1.1.0] - -- Update ruby version, add CI, rubocop autocorrect - ## [1.0.0] - Initial Release - -## [0.1.0] - -- Initial version! diff --git a/Gemfile.lock b/Gemfile.lock index df12416..1c9b232 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,9 +1,9 @@ PATH remote: . specs: - omniauth-azure-devops (1.1.3) + omniauth-azure-devops (1.0.0) omniauth (>= 1, < 3) - omniauth-oauth2 (~> 1.8.0) + omniauth-oauth2 (~> 1.1) GEM remote: https://rubygems.org/ diff --git a/lib/omni_auth/azure_devops/version.rb b/lib/omni_auth/azure_devops/version.rb index feb47f3..e788297 100644 --- a/lib/omni_auth/azure_devops/version.rb +++ b/lib/omni_auth/azure_devops/version.rb @@ -2,6 +2,6 @@ module OmniAuth module AzureDevops - VERSION = '1.1.3' + VERSION = '1.0.0' end end diff --git a/omniauth-azure-devops.gemspec b/omniauth-azure-devops.gemspec index 208a03d..0aa47b3 100644 --- a/omniauth-azure-devops.gemspec +++ b/omniauth-azure-devops.gemspec @@ -29,5 +29,5 @@ Gem::Specification.new do |gem| gem.required_ruby_version = '>= 3.2' gem.add_runtime_dependency 'omniauth', '>= 1', '< 3' - gem.add_runtime_dependency 'omniauth-oauth2', '~> 1.8.0' + gem.add_runtime_dependency 'omniauth-oauth2', '~> 1.1' end