diff --git a/CHANGELOG.md b/CHANGELOG.md index c137da47..02927531 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 3.3.5 (Jul 5, 2021) + +* Add comment and collate copying to rename_column + # 3.3.4 (Feb 9, 2021) * Run migrations inline in local/CI environment diff --git a/lhm.gemspec b/lhm.gemspec index 9062726f..a95a1dfa 100644 --- a/lhm.gemspec +++ b/lhm.gemspec @@ -6,15 +6,15 @@ $:.unshift(lib) unless $:.include?(lib) require 'lhm/version' Gem::Specification.new do |s| - s.name = 'lhm' + s.name = 'lhm-shopify' s.version = Lhm::VERSION s.licenses = ['BSD-3-Clause'] s.platform = Gem::Platform::RUBY s.authors = ['SoundCloud', 'Rany Keddo', 'Tobias Bielohlawek', 'Tobias Schmidt'] - s.email = %q{rany@soundcloud.com, tobi@soundcloud.com, ts@soundcloud.com} + s.email = %q{database-engineering@shopify.com} s.summary = %q{online schema changer for mysql} s.description = %q{Migrate large tables without downtime by copying to a temporary table in chunks. The old table is not dropped. Instead, it is moved to timestamp_table_name for verification.} - s.homepage = %q{http://github.com/soundcloud/lhm} + s.homepage = %q{http://github.com/shopify/lhm} s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.require_paths = ['lib'] @@ -29,6 +29,5 @@ Gem::Specification.new do |s| s.add_development_dependency 'rake' s.add_development_dependency 'activerecord' s.add_development_dependency 'mysql2' - s.add_development_dependency 'package_cloud' s.add_development_dependency 'simplecov' end diff --git a/lib/lhm/version.rb b/lib/lhm/version.rb index f9f461e7..765ded28 100644 --- a/lib/lhm/version.rb +++ b/lib/lhm/version.rb @@ -2,5 +2,5 @@ # Schmidt module Lhm - VERSION = '3.3.4' + VERSION = '3.3.5' end diff --git a/shipit.rubygems.yml b/shipit.rubygems.yml new file mode 100644 index 00000000..e69de29b diff --git a/shipit.yml b/shipit.yml deleted file mode 100644 index 5e0cdd18..00000000 --- a/shipit.yml +++ /dev/null @@ -1,4 +0,0 @@ -deploy: - override: - - bundle exec rake build - - bundle exec package_cloud push shopify/gems pkg/*.gem