flipper 0.27.0 → 0.27.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 202d50faf999fd9ed12d91ef7f160f786892b9476ad86b815fd4be5390cf8992
4
- data.tar.gz: 1f59767d2f210820f488e97a0388f84aa2d474ac7b573e1650a69104d15f384a
3
+ metadata.gz: ba1d158db684bce01872e3f32c81f522d32086a78af94a78a6266422079a3473
4
+ data.tar.gz: 9a7ea456415d5fd73d5adcb66bb77c4701a2a6e6b3ab94d5c89af52202907e7c
5
5
  SHA512:
6
- metadata.gz: f4b8079927fe805c7c6200694c6b9d9b020539cf1835d62a713724adc1483c48399a3f0073c969d4f9619b0362d615c21813ed79470172ea7037e62cfbb791db
7
- data.tar.gz: 8a389963c5386d4d9ef13be89e06f6f38e959dcb0c427b7950ffee628828d627ff567581da375d3e9eb8b3501ba7e24d0f4b82acdf6a04599fb0cf7a2385f250
6
+ metadata.gz: f708342f07ebe1bfbf3c9d0e0f1db184ccd686bdd995752b6459f96ab119fe589573e0077d156afad1ac8f73b45140a54e301ff23ef423e92b3c109e89285992
7
+ data.tar.gz: e9ca8640f9c9b655ae464651adda6cb6998355b967b58119fc42c2a87d3c3f848538dd05ff36585e75527384aca05ab6be1996558679a0090ef24bb8a6a7a682
data/Changelog.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## 0.27.1
6
+
7
+ * Quick fix for missing require of "flipper/version" that was causing issues with some flipper-ui people.
8
+
5
9
  ## 0.27.0
6
10
 
7
11
  * Easy Import/Export (https://github.com/jnunemaker/flipper/pull/709). This has some breaking changes but only if you are using flipper internals. If you are just using Flipper.* methods, you'll be fine.
data/Rakefile CHANGED
@@ -17,9 +17,9 @@ end
17
17
 
18
18
  desc 'Tags version, pushes to remote, and pushes gem'
19
19
  task release: :build do
20
- sh 'git', 'tag', "v#{Flipper::VERSION}"
21
- sh 'git push origin main'
22
- sh "git push origin v#{Flipper::VERSION}"
20
+ # sh 'git', 'tag', "v#{Flipper::VERSION}"
21
+ # sh 'git push origin main'
22
+ # sh "git push origin v#{Flipper::VERSION}"
23
23
  puts "\nWhat OTP code should be used?"
24
24
  otp_code = STDIN.gets.chomp
25
25
  sh "ls pkg/*.gem | xargs -n 1 gem push --otp #{otp_code}"
@@ -1,3 +1,3 @@
1
1
  module Flipper
2
- VERSION = '0.27.0'.freeze
2
+ VERSION = '0.27.1'.freeze
3
3
  end
data/lib/flipper.rb CHANGED
@@ -165,5 +165,6 @@ require 'flipper/types/percentage'
165
165
  require 'flipper/types/percentage_of_actors'
166
166
  require 'flipper/types/percentage_of_time'
167
167
  require 'flipper/typecast'
168
+ require 'flipper/version'
168
169
 
169
170
  require "flipper/railtie" if defined?(Rails::Railtie)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flipper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
4
+ version: 0.27.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Nunemaker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-18 00:00:00.000000000 Z
11
+ date: 2023-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby