Skip to content

Commit

Permalink
bump 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ermolaev committed Sep 28, 2024
1 parent 3eed91c commit 6a21b2e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
strategy:
matrix:
ruby:
- 2.7
- 3.0
- 3.1
- 3.2
- 3.3

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ inherit_gem:
- ./config/default.yml

AllCops:
TargetRubyVersion: 2.6
TargetRubyVersion: 3.0

Rails/ApplicationRecord:
Enabled: false
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GIT
PATH
remote: .
specs:
enum_machine (0.1.0)
enum_machine (1.0.0)
activemodel
activerecord
activesupport
Expand Down
6 changes: 3 additions & 3 deletions enum_machine.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Gem::Specification.new do |spec|
spec.authors = ['Ermolaev Andrey']
spec.email = ['[email protected]']

spec.summary = 'state machine for enums'
spec.description = 'state machine for enums'
spec.summary = 'fast and siple usage state machine in your app'
spec.description = 'Enum machine is a library for defining enums and setting state machines for attributes in ActiveRecord models and plain Ruby classes.'
spec.homepage = 'https://github.com/corp-gp/enum_machine'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.6.0'
spec.required_ruby_version = '>= 3.0.0'

spec.metadata['allowed_push_host'] = 'https://rubygems.org'

Expand Down
2 changes: 1 addition & 1 deletion lib/enum_machine/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module EnumMachine

VERSION = '0.1.0'
VERSION = '1.0.0'

end

0 comments on commit 6a21b2e

Please sign in to comment.