Skip to content

Commit

Permalink
Prepare for v1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenharman committed Dec 17, 2024
1 parent 4ca0fcd commit a0ec8e9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: CI

on: [push, pull_request]
Expand All @@ -11,10 +12,10 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [ 2.4, 2.5, 2.6, 2.7, 3.0, jruby, truffleruby ]
ruby: [ 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, jruby, truffleruby ]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup Ruby
uses: ruby/setup-ruby@v1
Expand All @@ -27,4 +28,4 @@ jobs:

- name: Publish code coverage
uses: paambaati/[email protected] # Locking to specific version b/c: https://github.com/paambaati/codeclimate-action/issues/142
if: matrix.ruby == '3.0' # Ruby 2.4 breaks the CC uploader. Also, we only need to upload one report.
if: matrix.ruby == '3.3' # Ruby 2.4 breaks the CC uploader. Also, we only need to upload one report.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [Unreleased]

## [1.1.0] 2024-12-17
### Changed
- Use `__getobj__` to be compatible with the `Delegator` "interface." [@cervantn [14](https://github.com/stevenharman/dumb_delegator/pull/14)]

## [1.0.0] 2020-01-27
### Changed
- Require Ruby >= 2.4. We may still work with older Rubies, but no promises.
Expand Down
2 changes: 1 addition & 1 deletion lib/dumb_delegator/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class DumbDelegator < ::BasicObject
VERSION = "1.0.0"
VERSION = "1.1.0"
end

0 comments on commit a0ec8e9

Please sign in to comment.