Skip to content

Commit 3a1ebce

Browse files
byRehamMatthew Elwell
authored andcommitted
Bump version to 3.0.0
1 parent 661a535 commit 3a1ebce

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
flagsmith (2.0.0)
4+
flagsmith (3.0.0)
55
faraday
66
faraday-retry
77
faraday_middleware

flagsmith.gemspec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# frozen_string_literal: true
22

3+
require File.expand_path('lib/flagsmith/version', __dir__)
4+
35
Gem::Specification.new do |spec|
46
spec.required_ruby_version = '>= 2.4.0'
57
spec.name = 'flagsmith'
6-
spec.version = '2.0.0'
8+
spec.version = Flagsmith::VERSION
79
spec.authors = ['Tom Stuart', 'Brian Moelk']
810
911
# Specify which files should be added to the gem when it is released.

lib/flagsmith/version.rb

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# frozen_string_literal: true
2+
3+
module Flagsmith
4+
VERSION = '3.0.0'
5+
end

spec/spec_helper.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
require 'ostruct'
1111
require 'json'
12-
require 'pry'
1312

1413
Dir[File.join(APP_ROOT, 'spec/support/**/*.rb')].each { |f| require f }
1514

0 commit comments

Comments
 (0)