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/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['3.2', '3.3', '3.4', '4.0']
ruby: ['3.3', '3.4', '4.0']
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Following Ruby best practices and style guidelines

AllCops:
TargetRubyVersion: 3.2
TargetRubyVersion: 3.3
NewCops: enable
Exclude:
- 'vendor/**/*'
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.9.9] - 2026-06-17

### Changed
- Bump minitest from 5.x to 6.x
- Bump rdoc from 6.x to 7.x
- Bump rake, rubocop, parallel, and other dev dependencies to latest versions
- Drop Ruby 3.2 support (EOL March 2025); minimum is now Ruby 3.3

## [1.9.8] - 2026-05-23

### Added
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

source 'https://rubygems.org'

gem 'minitest', '~> 5.25'
gem 'minitest', '~> 6.0'
gem 'rake', '~> 13.2'
gem 'rake-compiler', '~> 1.0'
gem 'rdoc', '~> 6.2'
gem 'rdoc', '~> 7.0'
gem 'rubocop', '~> 1.69'
gem 'simplecov', '~> 0.22', require: false
39 changes: 16 additions & 23 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,54 +1,47 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.9.0)
public_suffix (>= 2.0.2, < 8.0)
ast (2.4.3)
bigdecimal (4.1.0)
date (3.5.1)
docile (1.4.1)
drb (2.2.3)
erb (6.0.4)
json (2.19.2)
json-schema (6.2.0)
addressable (~> 2.8)
bigdecimal (>= 3.1, < 5)
json (2.19.9)
language_server-protocol (3.17.0.5)
lint_roller (1.1.0)
mcp (0.9.2)
json-schema (>= 4.1)
minitest (5.27.0)
parallel (1.27.0)
parser (3.3.10.2)
minitest (6.0.6)
drb (~> 2.0)
prism (~> 1.5)
parallel (2.1.0)
parser (3.3.11.1)
ast (~> 2.4.1)
racc
prism (1.9.0)
psych (5.3.1)
psych (5.4.0)
date
stringio
public_suffix (7.0.5)
racc (1.8.1)
rainbow (3.1.1)
rake (13.3.1)
rake (13.4.2)
rake-compiler (1.3.1)
rake
rdoc (6.17.0)
rdoc (7.2.0)
erb
psych (>= 4.0.0)
tsort
regexp_parser (2.11.3)
rubocop (1.85.1)
regexp_parser (2.12.0)
rubocop (1.88.0)
json (~> 2.3)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.1.0)
mcp (~> 0.6)
parallel (~> 1.10)
parallel (>= 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 2.9.3, < 3.0)
rubocop-ast (>= 1.49.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.49.0)
rubocop-ast (1.49.1)
parser (>= 3.3.7.2)
prism (~> 1.7)
ruby-progressbar (1.13.0)
Expand All @@ -69,10 +62,10 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
minitest (~> 5.25)
minitest (~> 6.0)
rake (~> 13.2)
rake-compiler (~> 1.0)
rdoc (~> 6.2)
rdoc (~> 7.0)
rubocop (~> 1.69)
simplecov (~> 0.22)

Expand Down
2 changes: 1 addition & 1 deletion calcpace.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://github.com/0jonjo/calcpace'
spec.metadata['source_code_uri'] = spec.homepage
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.2.0'
spec.required_ruby_version = '>= 3.3.0'

spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata['rubygems_mfa_required'] = 'true'
Expand Down
2 changes: 1 addition & 1 deletion lib/calcpace/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

class Calcpace
VERSION = '1.9.8'
VERSION = '1.9.9'
end
Loading