Skip to content

Commit

Permalink
feat: 🎸 add support for ruby 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kibitan committed Dec 30, 2024
1 parent ad72ffa commit da5232c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ test_attributes: &test_attributes
command: docker run --entrypoint sh -e CI -e CODECOV_TOKEN masking-$RUBY_VERSION-$CIRCLE_SHA1 -c "bundle exec rake"

jobs:
test-ruby34:
<<: *test_attributes
environment:
RUBY_VERSION: '3.4'
test-ruby33:
<<: *test_attributes
environment:
Expand Down Expand Up @@ -46,6 +50,7 @@ jobs:
workflows:
'CircleCI: build':
jobs:
- test-ruby34
- test-ruby33
- test-ruby32
- test-ruby31
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
3.4.1
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- add Ruby 3.4 support [#102](https://github.com/kibitan/masking/pull/102)
- add Ruby 3.3 support [#99](https://github.com/kibitan/masking/pull/99)

## [v1.1.2] - 2023-09-24
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG RUBY_VERSION=3.3
ARG RUBY_VERSION=3.4

FROM ruby:${RUBY_VERSION}-alpine AS builder
RUN apk add --no-cache build-base git
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ghcr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# `docker run ghcr.io/kibitan/masking`
ARG RUBY_VERSION=3.3
ARG RUBY_VERSION=3.4

FROM ruby:$RUBY_VERSION-alpine
RUN addgroup -S app && adduser -S -G app app
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ gem install masking

## Requirement

* Ruby 2.6/2.7/3.0/3.1/3.2/3.3
* Ruby 2.6/2.7/3.0/3.1/3.2/3.3/3.4

## Supporting RDBMS

Expand Down

0 comments on commit da5232c

Please sign in to comment.