Skip to content

Commit

Permalink
Merge pull request #58 from chocoby/release-110
Browse files Browse the repository at this point in the history
Release v1.1.0
  • Loading branch information
chocoby committed Mar 17, 2022
2 parents d40fe6c + ee453d6 commit 96dab29
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## Unreleased

## 1.1.0 (2022-03-17)

### Features

* 都道府県情報にローマ字表記を追加 (PR [#57](https://github.com/chocoby/jp_prefecture/pull/57)/[@sondh5](https://github.com/sondh5))
* Ruby 3.1 をサポートに追加 (PR [#54](https://github.com/chocoby/jp_prefecture/pull/54)/[@chocoby](https://github.com/chocoby))
* Rails 7.0 をサポート (PR [#55](https://github.com/chocoby/jp_prefecture/pull/55)/[@chocoby](https://github.com/chocoby))

Expand Down
14 changes: 9 additions & 5 deletions jp_prefecture.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,24 @@
require File.expand_path('lib/jp_prefecture/version', __dir__)

Gem::Specification.new do |gem|
gem.authors = ['@chocoby']
gem.email = ['chocoby@gmail.com']
gem.name = 'jp_prefecture'
gem.version = JpPrefecture::VERSION
gem.authors = ['chocoby']
gem.email = ['chocoby@himajin.dev']

gem.summary = 'Convert japan prefecture code into prefecture name'
gem.description = 'Convert japan prefecture code (JIS X 0402 based) into prefecture name.'
gem.homepage = 'https://github.com/chocoby/jp_prefecture'
gem.license = 'MIT'

gem.required_ruby_version = '>= 2.4'

gem.metadata['rubygems_mfa_required'] = 'true'

gem.files = Dir['{data,lib}/**/*', 'CHANGELOG.md', 'LICENSE', 'README.md', 'README_EN.md']
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'jp_prefecture'
gem.require_paths = ['lib']
gem.version = JpPrefecture::VERSION
gem.required_ruby_version = '>= 2.4.0'

gem.add_development_dependency 'activerecord', '>= 5.0.0'
gem.add_development_dependency 'appraisal'
Expand Down
2 changes: 1 addition & 1 deletion lib/jp_prefecture/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module JpPrefecture
VERSION = '1.0.0'
VERSION = '1.1.0'
end

0 comments on commit 96dab29

Please sign in to comment.