From df2033c57f434ad533889a3d438915db9a97a791 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Tue, 9 Jan 2024 17:39:22 +0100 Subject: [PATCH 1/2] Fix module case in version [Breaking Change] --- lib/omniauth/cas/version.rb | 2 +- omniauth-cas.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/omniauth/cas/version.rb b/lib/omniauth/cas/version.rb index 4d9d761..0fb6fc5 100644 --- a/lib/omniauth/cas/version.rb +++ b/lib/omniauth/cas/version.rb @@ -1,4 +1,4 @@ -module Omniauth +module OmniAuth module Cas VERSION = '3.0.0' end diff --git a/omniauth-cas.gemspec b/omniauth-cas.gemspec index ff4675c..45e7b60 100644 --- a/omniauth-cas.gemspec +++ b/omniauth-cas.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |gem| gem.files = Dir.glob('{CHANGELOG.md,LICENSE,README.md,lib/**/*.rb}', File::FNM_DOTMATCH) gem.name = 'omniauth-cas' gem.require_paths = ['lib'] - gem.version = Omniauth::Cas::VERSION + gem.version = OmniAuth::Cas::VERSION gem.metadata = { 'bug_tracker_uri' => 'https://github.com/dlindahl/omniauth-cas/issues', From 57057537424ac386b969f44d4e99dd3a1aee858d Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Tue, 9 Jan 2024 17:42:31 +0100 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c2acc1..983626a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/) +## 3.0.0 - unreleased + +### Changed + +* Potential breaking change: case of `Omniauth::Cas::VERSION` module (#76). + +### Removed + +* Compatibility with EOL Ruby versions (#73). + ## 2.0.0 - 2010-11-14 ### Added