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 +4 -4
- data/Changelog.md +4 -0
- data/Rakefile +3 -3
- data/lib/flipper/version.rb +1 -1
- data/lib/flipper.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ba1d158db684bce01872e3f32c81f522d32086a78af94a78a6266422079a3473
|
|
4
|
+
data.tar.gz: 9a7ea456415d5fd73d5adcb66bb77c4701a2a6e6b3ab94d5c89af52202907e7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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}"
|
data/lib/flipper/version.rb
CHANGED
data/lib/flipper.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2023-03-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: concurrent-ruby
|