Skip to content

Commit

Permalink
Deprecate Ruby 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyates committed Sep 30, 2023
1 parent dbe950a commit 09b0a5b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
strategy:
matrix:
ruby:
- '2.6'
- '2.7'
- '3.0'
- '3.1'
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ AllCops:
- "vendor/**/*"
DisplayCopNames:
Enabled: true
TargetRubyVersion: 2.6
TargetRubyVersion: 2.7

Capybara:
Enabled: false
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 13.0.0 - 2023-09-30

### Removed

* Deprecated support of Ruby 2.6.x

## 12.1.0 - 2023-09-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion docs/installation/rubygem.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Check you have Ruby installed
ruby -v
```

You need at least Ruby 2.6 installed.
You need at least Ruby 2.7 installed.

# Install

Expand Down
2 changes: 1 addition & 1 deletion imap-backup.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |gem|

gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 2.6"
gem.required_ruby_version = ">= 2.7"

gem.add_runtime_dependency "highline"
gem.add_runtime_dependency "mail", "2.7.1"
Expand Down
4 changes: 2 additions & 2 deletions lib/imap/backup/version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module Imap; end

module Imap::Backup
MAJOR = 12
MINOR = 1
MAJOR = 13
MINOR = 0
REVISION = 0
PRE = nil
VERSION = [MAJOR, MINOR, REVISION, PRE].compact.map(&:to_s).join(".")
Expand Down

0 comments on commit 09b0a5b

Please sign in to comment.