diff --git a/CHANGELOG.md b/CHANGELOG.md index 873756f..5d8b697 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## [0.7.2] - 2024-03-30 +- update title and description in Rubygems + ## [0.7.1] - 2024-03-19 - add csv as a dependency since Ruby 3.3 has removed it from the standard library diff --git a/Gemfile.lock b/Gemfile.lock index 8439af9..9c4e186 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - actual_db_schema (0.7.1) + actual_db_schema (0.7.2) activerecord (>= 6.0.0) activesupport (>= 6.0.0) csv @@ -93,7 +93,7 @@ GEM concurrent-ruby (1.2.2) connection_pool (2.4.1) crass (1.0.6) - csv (3.2.8) + csv (3.3.0) date (3.3.3) debug (1.8.0) irb (>= 1.5.0) diff --git a/actual_db_schema.gemspec b/actual_db_schema.gemspec index c359f23..4a49412 100644 --- a/actual_db_schema.gemspec +++ b/actual_db_schema.gemspec @@ -13,14 +13,14 @@ Gem::Specification.new do |spec| Wipe out inconsistent DB and schema.rb when switching branches. Just install this gem and use the standard rake db:migrate command. DESC - spec.homepage = "https://github.com/widefix/actual_db_schema" + spec.homepage = "https://blog.widefix.com/actual-db-schema/" spec.license = "MIT" spec.required_ruby_version = ">= 2.7.0" # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'" spec.metadata["homepage_uri"] = spec.homepage - spec.metadata["source_code_uri"] = spec.homepage + spec.metadata["source_code_uri"] = "https://github.com/widefix/actual_db_schema" spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md" # Specify which files should be added to the gem when it is released. diff --git a/lib/actual_db_schema/version.rb b/lib/actual_db_schema/version.rb index b61bf86..07cfc6a 100644 --- a/lib/actual_db_schema/version.rb +++ b/lib/actual_db_schema/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ActualDbSchema - VERSION = "0.7.1" + VERSION = "0.7.2" end