Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
build:
strategy:
matrix:
ruby: [ 'jruby-9.3', 'jruby-9.4', '2.6', '3.4' ]
ruby: [ 'jruby', '2.7', '3.4' ]
python: [ '3.8', '3.13' ]
platform: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.platform }}
Expand Down
3 changes: 1 addition & 2 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
AllCops:
NewCops: enable
TargetRubyVersion: 2.6
NewCops: disable
Gemspec/RequireMFA:
Enabled: false
Metrics/AbcSize:
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@
This document provides a high-level view of the changes to the {project-name} by release.
For a detailed view of what has changed, refer to the {uri-repo}/commits/master[commit history] on GitHub.

== Unreleased

* Drop support for Ruby 2.6.
The oldest supported is 2.7 now.

== 3.0.0 (2024-05-14) - @slonopotamus

* Drop support for Ruby 2.5.
The oldest supported is 3.6 now.
The oldest supported is 2.6 now.
* Drop support for Python 3.6 and 3.7.
The oldest supported is 3.8 now.
* Update Pygments to 2.18.0
Expand Down
4 changes: 2 additions & 2 deletions pygments.rb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ Gem::Specification.new do |s|
'source_code_uri' => s.homepage
}

s.required_ruby_version = '>= 2.6.0'
s.required_ruby_version = '>= 2.7.0'

s.add_development_dependency 'rake', '~> 13.3.0'
s.add_development_dependency 'rubocop', '~> 1.50.2'
s.add_development_dependency 'rubocop', '~> 1.70.0'
s.add_development_dependency 'test-unit', '~> 3.6.0'

s.files = `git ls-files -z`.split("\0").reject { |f| File.symlink?(f) }
Expand Down
Loading