bixby 3.0.0 → 3.0.1

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: 816a4b20f59bf9321a5449d153b36487d072052590eae7be0ea6bf5870862180
4
- data.tar.gz: b321e14e38bdb9d103d682299a39885276af239b6932dbaae07add8063e04ca5
3
+ metadata.gz: 87552958616255b35a3f50738ab1d6f90c7ceab733e491e60bf7e348bae562ae
4
+ data.tar.gz: 6f5fd49b832323c3500483141542cfa15140c5c696a2994f0a1562b0940b7287
5
5
  SHA512:
6
- metadata.gz: 5ea4b4b301f02e3108ba3b249cea6a315d346649402ae4fca5dc9d775557b55cbcbaaddc2a06399765e3181dbaad205e22262bbe36c0cbb8564bc291a3f65249
7
- data.tar.gz: 143335699e262695d8a5adcc1f98441a8d2c949b05b26e2a2ac12c0a53a13d2d69ba5a4ce2c8dd756d39a84d01ecb3aac159e1c81c59f26729f75bfee632319b
6
+ metadata.gz: 869c5b1f503eadd3edb2864d614bf40f0f032670ff1592cc59b3c5aa4bd0e576f259fc5c0b20795c484252fd13869a73502365c80f13fbe7b41cf2cf49ac3bb5
7
+ data.tar.gz: 40ee0c7005679a15eacd3fafb2b0f986f801d3e447fc48ac8c88a0cd858906f79cf8c500e332977e02c51e01d46c8ff496425bc1f0c55ca1a3eb228ebe24cfd8
@@ -1,2 +1,2 @@
1
1
  unreleased=true
2
- future-release=3.0.0
2
+ future-release=3.0.1
@@ -1,11 +1,21 @@
1
1
  # Changelog
2
2
 
3
- ## [3.0.0](https://github.com/samvera-labs/bixby/tree/3.0.0) (2020-06-10)
3
+ ## [3.0.1](https://github.com/samvera-labs/bixby/tree/3.0.1) (2020-06-16)
4
4
 
5
- [Full Changelog](https://github.com/samvera-labs/bixby/compare/v3.0.0.pre3...3.0.0)
5
+ [Full Changelog](https://github.com/samvera-labs/bixby/compare/v3.0.0...3.0.1)
6
6
 
7
7
  **Merged pull requests:**
8
8
 
9
+ - Removes IndentationConsistency supported styles [\#45](https://github.com/samvera-labs/bixby/pull/45) ([rotated8](https://github.com/rotated8))
10
+ - allow non-ascii characters in comments [\#44](https://github.com/samvera-labs/bixby/pull/44) ([no-reply](https://github.com/no-reply))
11
+
12
+ ## [v3.0.0](https://github.com/samvera-labs/bixby/tree/v3.0.0) (2020-06-10)
13
+
14
+ [Full Changelog](https://github.com/samvera-labs/bixby/compare/v3.0.0.pre3...v3.0.0)
15
+
16
+ **Merged pull requests:**
17
+
18
+ - Prep for 3.0.0 release [\#43](https://github.com/samvera-labs/bixby/pull/43) ([bess](https://github.com/bess))
9
19
  - Prep for 3.0.0.pre3 release [\#42](https://github.com/samvera-labs/bixby/pull/42) ([bess](https://github.com/bess))
10
20
 
11
21
  ## [v3.0.0.pre3](https://github.com/samvera-labs/bixby/tree/v3.0.0.pre3) (2020-06-10)
@@ -78,6 +88,7 @@
78
88
  **Merged pull requests:**
79
89
 
80
90
  - Bixby 2.0 [\#28](https://github.com/samvera-labs/bixby/pull/28) ([no-reply](https://github.com/no-reply))
91
+ - Bump version to 1.0.0-rc1 [\#21](https://github.com/samvera-labs/bixby/pull/21) ([no-reply](https://github.com/no-reply))
81
92
 
82
93
  ## [1.0.0](https://github.com/samvera-labs/bixby/tree/1.0.0) (2018-02-13)
83
94
 
@@ -102,7 +113,6 @@
102
113
 
103
114
  **Merged pull requests:**
104
115
 
105
- - Bump version to 1.0.0-rc1 [\#21](https://github.com/samvera-labs/bixby/pull/21) ([no-reply](https://github.com/no-reply))
106
116
  - Support newer versions of `rubocop`, `rubocop-rspec`, and Ruby [\#20](https://github.com/samvera-labs/bixby/pull/20) ([no-reply](https://github.com/no-reply))
107
117
  - Remove Lint/InvalidCharacterLiteral, fixes \#15 [\#16](https://github.com/samvera-labs/bixby/pull/16) ([hackmastera](https://github.com/hackmastera))
108
118
  - Update READEME.md to discuss versioning strategy [\#13](https://github.com/samvera-labs/bixby/pull/13) ([no-reply](https://github.com/no-reply))
@@ -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'
15
+ spec.version = '3.0.1'
16
16
  spec.license = 'Apache-2.0'
17
17
 
18
18
  spec.add_dependency 'rubocop', '0.85.1'
@@ -24,9 +24,6 @@ Style/AndOr:
24
24
  Style/ArrayJoin:
25
25
  Enabled: true
26
26
 
27
- Style/AsciiComments:
28
- Enabled: true
29
-
30
27
  Style/Attr:
31
28
  Enabled: true
32
29
 
@@ -447,9 +444,7 @@ Layout/FirstParameterIndentation:
447
444
  Enabled: true
448
445
 
449
446
  Layout/IndentationConsistency:
450
- SupportedStyles:
451
- - normal
452
- - rails
447
+ Enabled: true
453
448
  EnforcedStyle: normal
454
449
 
455
450
  Layout/IndentationWidth:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bixby
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Johnson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-10 00:00:00.000000000 Z
11
+ date: 2020-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop