Skip to content

Commit

Permalink
chore: bump version, drop Ruby 2.6 support because EOL (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
saiqulhaq authored May 27, 2022
1 parent 673a286 commit 3389e21
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ Firebase Dynamic Link is a tool to create a deep link of your webpage. It can be
- [Shorten parameters](#shorten-parameters)
- [More than one firebase project](#more-than-one-firebase-project)
- [CHANGELOG](#changelog)
- [V1.0.5](#v105)
- [V1.0.3](#v103)
- [Development](#development)
- [Contributing](#contributing)
- [License](#license)
Expand Down
1 change: 1 addition & 0 deletions firebase_dynamic_link.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://github.com/saiqulhaq/firebase_dynamic_link'
spec.license = 'MIT'
spec.metadata['yard.run'] = 'yri'
spec.required_ruby_version = '>= 2.7.0'

spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
Expand Down
2 changes: 1 addition & 1 deletion lib/firebase_dynamic_link/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module FirebaseDynamicLink
VERSION = '1.1.0'
VERSION = '2.0.1'
end
2 changes: 1 addition & 1 deletion spec/firebase_dynamic_link_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
before(:all) { described_class.reset_config }

it 'has a version number' do
expect(FirebaseDynamicLink::VERSION).to eq('1.1.0')
expect(FirebaseDynamicLink::VERSION).to eq('2.0.1')
end

describe '.config' do
Expand Down

0 comments on commit 3389e21

Please sign in to comment.