Skip to content

Commit

Permalink
Drop Ruby 2.7 and release 1.0.0 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxveldink authored Jun 20, 2023
1 parent 7f7f334 commit d4f3320
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
strategy:
matrix:
ruby:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require:

AllCops:
NewCops: enable
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
Exclude:
- sorbet/**/*.rbi

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0] - 2023-06-20

### Removed

- Remove support for Ruby < 3.0

## [0.3.1] - 2023-06-20

### Added
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
sorbet-result (0.3.1)
sorbet-result (1.0.0)
sorbet-runtime (~> 0.5)
zeitwerk (~> 2.6)

Expand Down
4 changes: 2 additions & 2 deletions sorbet-result.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

Gem::Specification.new do |spec|
spec.name = "sorbet-result"
spec.version = "0.3.1"
spec.version = "1.0.0"
spec.authors = ["Max VelDink"]
spec.email = ["[email protected]"]

spec.summary = "Adds T::Result to sorbet-runtime, which is a basic, strongly-typed monad"
spec.homepage = "https://github.com/maxveldink/sorbet-result"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7"
spec.required_ruby_version = ">= 3.0"

spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["rubygems_mfa_required"] = "true"
Expand Down

0 comments on commit d4f3320

Please sign in to comment.