bixby 3.0.0.pre2 → 3.0.0.pre3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e425999705e0ab3da75d5fe2849e07a85f632ff7fd895ee221da37df6eba8505
4
- data.tar.gz: 9911ddfbb56c7109f5f8c6e8fc6d509771c39b5ffa3a966cbb0e73f9f8e459de
3
+ metadata.gz: b94d0e76ab7fdfae7b8cdad8cfc6f9553d5483beafb5e9060d05412757bedeb1
4
+ data.tar.gz: c03693dbfc7e8cf1afed2cbe7c55234be792bd8acf7cfc0c8d8805f24a47a621
5
5
  SHA512:
6
- metadata.gz: 8d210e0da6aefa8659989860b32fd0f758c41ec13dad0323824026a25896833dfebc8fccecb9b17a7f79f9dfa8ea744ebfafaeadb4b958e291a57cfd2d268ee1
7
- data.tar.gz: 28e615535afa86f3186de77a0fdda9913a96ed3cec85919b2e62e524d4ac9ff384e6ff2793470db074457642071abecd4e9a88fc4508017d351f9500c5727f9d
6
+ metadata.gz: 4750be9e5787d7a476b93170a8adf3898935fea7a228d587be5826e9d2d27628c57d1e3816ece1f0f1ea411427afcf9e6d2bce12d6278f9f35d2d1123434f3f5
7
+ data.tar.gz: caafe44c0136885a1cd74209cd4fdc8c7fd717f83f5fe4459d65a07049f79d3b674bf20455c038d9fcba2da0dd6487d27f5480a9d746427e7a66fdaec46622ca
@@ -1,2 +1,2 @@
1
1
  unreleased=true
2
- future-release=3.0.0.pre2
2
+ future-release=3.0.0.pre3
@@ -1,11 +1,20 @@
1
1
  # Changelog
2
2
 
3
- ## [3.0.0.pre2](https://github.com/samvera-labs/bixby/tree/3.0.0.pre2) (2020-06-10)
3
+ ## [3.0.0.pre3](https://github.com/samvera-labs/bixby/tree/3.0.0.pre3) (2020-06-10)
4
4
 
5
- [Full Changelog](https://github.com/samvera-labs/bixby/compare/v3.0.0.pre1...3.0.0.pre2)
5
+ [Full Changelog](https://github.com/samvera-labs/bixby/compare/v3.0.0.pre2...3.0.0.pre3)
6
6
 
7
7
  **Merged pull requests:**
8
8
 
9
+ - Disable Rails/DynamicFindBy [\#41](https://github.com/samvera-labs/bixby/pull/41) ([bess](https://github.com/bess))
10
+
11
+ ## [v3.0.0.pre2](https://github.com/samvera-labs/bixby/tree/v3.0.0.pre2) (2020-06-10)
12
+
13
+ [Full Changelog](https://github.com/samvera-labs/bixby/compare/v3.0.0.pre1...v3.0.0.pre2)
14
+
15
+ **Merged pull requests:**
16
+
17
+ - Prep for 3.0.0.pre2 release [\#40](https://github.com/samvera-labs/bixby/pull/40) ([bess](https://github.com/bess))
9
18
  - 3.0.0 fixup [\#39](https://github.com/samvera-labs/bixby/pull/39) ([no-reply](https://github.com/no-reply))
10
19
 
11
20
  ## [v3.0.0.pre1](https://github.com/samvera-labs/bixby/tree/v3.0.0.pre1) (2020-06-10)
@@ -90,7 +99,6 @@
90
99
  - Remove Lint/InvalidCharacterLiteral, fixes \#15 [\#16](https://github.com/samvera-labs/bixby/pull/16) ([hackmastera](https://github.com/hackmastera))
91
100
  - Update READEME.md to discuss versioning strategy [\#13](https://github.com/samvera-labs/bixby/pull/13) ([no-reply](https://github.com/no-reply))
92
101
  - Lock versions to `rubocop` 0.50.0 and `rubocop-rspec` 1.18.0 [\#12](https://github.com/samvera-labs/bixby/pull/12) ([no-reply](https://github.com/no-reply))
93
- - Prepare Release v0.3.0 [\#9](https://github.com/samvera-labs/bixby/pull/9) ([no-reply](https://github.com/no-reply))
94
102
 
95
103
  ## [v0.3.1](https://github.com/samvera-labs/bixby/tree/v0.3.1) (2017-10-04)
96
104
 
@@ -110,6 +118,7 @@
110
118
 
111
119
  **Merged pull requests:**
112
120
 
121
+ - Prepare Release v0.3.0 [\#9](https://github.com/samvera-labs/bixby/pull/9) ([no-reply](https://github.com/no-reply))
113
122
  - Upgrade for RuboCop 0.50.0 compatibility [\#8](https://github.com/samvera-labs/bixby/pull/8) ([no-reply](https://github.com/no-reply))
114
123
  - Allow deeper group nesting in RSpec [\#7](https://github.com/samvera-labs/bixby/pull/7) ([no-reply](https://github.com/no-reply))
115
124
 
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.name = 'bixby'
13
13
  spec.require_paths = ['lib']
14
14
 
15
- spec.version = '3.0.0.pre2'
15
+ spec.version = '3.0.0.pre3'
16
16
  spec.license = 'Apache-2.0'
17
17
 
18
18
  spec.add_dependency 'rubocop', '0.85.1'
@@ -16,6 +16,12 @@ Rails/Delegate:
16
16
  Rails/DelegateAllowBlank:
17
17
  Enabled: true
18
18
 
19
+ # This one breaks things unexpectedly.
20
+ # E.g., it changes ISO_639.find_by_code(language_code) to ISO_639.find_by(code: language_code)
21
+ # which results in an error.
22
+ Rails/DynamicFindBy:
23
+ Enabled: false
24
+
19
25
  Rails/EnumUniqueness:
20
26
  Enabled: true
21
27
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bixby
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.pre2
4
+ version: 3.0.0.pre3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Johnson