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

Bumped the dependency gems to their latest version #9

Merged
merged 8 commits into from
Jul 29, 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
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
strategy:
matrix:
ruby:
- "3.1.4"
- "3.2.2"
- "3.2.5"
- "3.3.4"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
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 @@ require:

AllCops:
NewCops: enable
TargetRubyVersion: 3.1
TargetRubyVersion: 3.2

Style/StringLiterals:
Enabled: true
Expand Down
1 change: 0 additions & 1 deletion .ruby-version

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## [Unreleased]

## [1.0.0] - 2024-07-29

- Changed: Bumped the dependency gems to their latest version.
- BREAKING CHANGE: Removed support for Ruby versions `3.1.x`.

## [0.1.8] - 2023-12-30

- Changed: Bumped the dependency gems to their latest version.
Expand Down
43 changes: 23 additions & 20 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,49 +1,52 @@
PATH
remote: .
specs:
bump_gem_version (0.1.8)
bump_gem_version (1.0.0)
thor (~> 1.3)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
json (2.7.1)
json (2.7.2)
language_server-protocol (3.17.0.3)
minitest (5.20.0)
parallel (1.24.0)
parser (3.2.2.4)
minitest (5.24.1)
parallel (1.25.1)
parser (3.3.4.0)
ast (~> 2.4.1)
racc
racc (1.7.3)
racc (1.8.0)
rainbow (3.1.1)
rake (13.1.0)
regexp_parser (2.8.3)
rexml (3.2.6)
rubocop (1.59.0)
rake (13.2.1)
regexp_parser (2.9.2)
rexml (3.3.2)
strscan
rubocop (1.65.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.2.4)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
regexp_parser (>= 2.4, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.30.0, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-minitest (0.34.2)
rubocop (>= 1.39, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-minitest (0.35.1)
rubocop (>= 1.61, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
rubocop-rake (0.6.0)
rubocop (~> 1.0)
ruby-progressbar (1.13.0)
thor (1.3.0)
strscan (3.1.0)
thor (1.3.1)
unicode-display_width (2.5.0)

PLATFORMS
arm64-darwin-21
arm64-darwin-23
x86_64-linux

DEPENDENCIES
Expand All @@ -55,4 +58,4 @@ DEPENDENCIES
rubocop-rake

BUNDLED WITH
2.5.3
2.5.16
4 changes: 2 additions & 2 deletions bump_gem_version.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
spec.summary = "BumpGemVersion is a gem that will simplify the way you build gems."
spec.homepage = "https://rubygems.org/gems/bump_gem_version"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1"
spec.required_ruby_version = ">= 3.2"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/thejus-paul/bump_gem_version"
Expand All @@ -27,5 +27,5 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_runtime_dependency "thor", "~> 1.3"
spec.add_dependency "thor", "~> 1.3"
end
2 changes: 1 addition & 1 deletion lib/bump_gem_version/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module BumpGemVersion
VERSION = "0.1.8"
VERSION = "1.0.0"
end
1 change: 1 addition & 0 deletions test/dummy/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ GEM

PLATFORMS
arm64-darwin-21
arm64-darwin-23

DEPENDENCIES
dummy!
Expand Down
2 changes: 1 addition & 1 deletion test/dummy/dummy.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.description = "Write a longer description or delete this line."
spec.homepage = "https://example.com"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.0"
spec.required_ruby_version = ">= 3.2"

spec.metadata["allowed_push_host"] = "Set to your gem server 'https://example.com'"

Expand Down