Skip to content

Commit

Permalink
update title & description on rubygems
Browse files Browse the repository at this point in the history
  • Loading branch information
ka8725 committed Mar 30, 2024
1 parent c9327bf commit d416675
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions actual_db_schema.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion lib/actual_db_schema/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ActualDbSchema
VERSION = "0.7.1"
VERSION = "0.7.2"
end

0 comments on commit d416675

Please sign in to comment.