Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix module case in version [Breaking Change] #76

Merged
merged 2 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/omniauth/cas/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Omniauth
module OmniAuth
module Cas
VERSION = '3.0.0'
end
Expand Down
2 changes: 1 addition & 1 deletion omniauth-cas.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down