unleash 6.0.5.pre → 6.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/pull_request.yml +0 -2
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +8 -0
- data/README.md +3 -5
- data/lib/unleash/version.rb +1 -1
- data/unleash-client.gemspec +1 -2
- metadata +3 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b2a1342414013d571f6814fd3ed5e7087de3e82b3533239222eafbf5e21054b
|
4
|
+
data.tar.gz: 74b3194925231ccec645d112492441ca6f7c108ac49ab9bd5846d9bcd39b1965
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10b7a466f4099130c63f9ea0cb96eba3e607b036b62c1af329c9f2497522bd5a107b3f9eaf9bfb5fc92823390d6132f5924ae0fc6599d559d42848438001f710
|
7
|
+
data.tar.gz: 9bc10757f64e99ac17906dddaa22a1625f1fa3a1500ae4d06609c9ae60df846f47b60e09ee28e92086c8022920cf1e025336e88e24189e704910e4554e09bded
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -13,6 +13,14 @@ Note: These changes are not considered notable:
|
|
13
13
|
|
14
14
|
## [Unreleased]
|
15
15
|
|
16
|
+
## [6.0.5] - 2024-09-25
|
17
|
+
#### Fixed
|
18
|
+
- Upgrade core engine library to support ARM on legacy Mac
|
19
|
+
|
20
|
+
## [6.0.0] - 2024-09-25
|
21
|
+
#### Fixed
|
22
|
+
- Upgrade core engine library to support ARM on Linux
|
23
|
+
|
16
24
|
## [6.0.0.pre] - 2024-09-25
|
17
25
|
#### Changed
|
18
26
|
- No longer possible to override built in strategies with custom strategies (#152)
|
data/README.md
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
Ruby client for the [Unleash](https://github.com/Unleash/unleash) feature management service.
|
8
8
|
|
9
|
-
> **Migrating to v6**
|
9
|
+
> **Migrating to v6**
|
10
10
|
>
|
11
11
|
> If you use [custom strategies](#custom-strategies) or override built-in ones, read the complete [migration guide](./v6_MIGRATION_GUIDE.md) before upgrading to v6.
|
12
12
|
|
@@ -18,16 +18,14 @@ Ruby client for the [Unleash](https://github.com/Unleash/unleash) feature manage
|
|
18
18
|
- MRI 3.1
|
19
19
|
- MRI 3.0
|
20
20
|
- MRI 2.7
|
21
|
-
- MRI 2.6
|
22
21
|
- jruby 9.4
|
23
|
-
- jruby 9.3
|
24
22
|
|
25
23
|
## Installation
|
26
24
|
|
27
25
|
Add this line to your application's Gemfile:
|
28
26
|
|
29
27
|
```ruby
|
30
|
-
gem 'unleash', '~>
|
28
|
+
gem 'unleash', '~> 6.0.5'
|
31
29
|
```
|
32
30
|
|
33
31
|
And then execute:
|
@@ -560,7 +558,7 @@ To release a new version, follow these steps:
|
|
560
558
|
3. Commit changes:
|
561
559
|
- Commit the changes with a message like: `chore: bump version to x.y.z.`
|
562
560
|
4. Release the gem:
|
563
|
-
-
|
561
|
+
- On the `main` branch, run `bundle exec rake release` to create a git tag for the new version, push commits and tags to origin, and publish `.gem` file to [rubygems.org](https://rubygems.org).
|
564
562
|
|
565
563
|
## Contributing
|
566
564
|
|
data/lib/unleash/version.rb
CHANGED
data/unleash-client.gemspec
CHANGED
@@ -21,9 +21,8 @@ Gem::Specification.new do |spec|
|
|
21
21
|
spec.bindir = 'bin'
|
22
22
|
spec.executables = spec.files.grep(%r{^bin/unleash}) { |f| File.basename(f) }
|
23
23
|
spec.require_paths = ["lib"]
|
24
|
-
spec.required_ruby_version = ">= 2.
|
24
|
+
spec.required_ruby_version = ">= 2.7"
|
25
25
|
|
26
|
-
spec.add_dependency "murmurhash3", "~> 0.1.7"
|
27
26
|
spec.add_dependency "yggdrasil-engine", "~> 0.0.6"
|
28
27
|
|
29
28
|
spec.add_development_dependency "bundler", "~> 2.1"
|
metadata
CHANGED
@@ -1,29 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unleash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.5
|
4
|
+
version: 6.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Renato Arruda
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: murmurhash3
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 0.1.7
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 0.1.7
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: yggdrasil-engine
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -210,7 +196,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
210
196
|
requirements:
|
211
197
|
- - ">="
|
212
198
|
- !ruby/object:Gem::Version
|
213
|
-
version: '2.
|
199
|
+
version: '2.7'
|
214
200
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
215
201
|
requirements:
|
216
202
|
- - ">="
|