Skip to content

Commit

Permalink
Release version 0.2.0
Browse files Browse the repository at this point in the history
[Full Changelog](v0.1.1...v0.2.0)

Enhancements
------------

- Adjust common Rubocop configuration (Aaron Kromer, #2):
  - Ignore `Lint/AmbiguousBlockAssociation` for specs
  - Ignore long lines due to Rubocop directives
  - Ignore long lines due to comments
  - Prefer a line length of 80, but don't complain until 100
  - Disable ASCII only comments
  - Set the `MinSize` for `Style/SymbolArray` and `Style/WordArray` to three
  - Use squiggly `<<~` heredoc indentation
  - Allow common `EOF` as a heredoc delimiter
  - Indent multi-line operations
  - Allow unspecified rescue as a catch-all
- Adjust common Rubocop Rails configuration (Aaron Kromer, #2):
  - Ignore `Rails/ApplicationRecord` for benchmarks
  - Ignore more common gem binstubs
  • Loading branch information
cupakromer committed May 17, 2018
1 parent 9a478a5 commit abf3756
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
10 changes: 3 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
## Development
## 0.2.0 (May 17, 2018)

[Full Changelog](https://github.com/RadiusNetworks/radius-spec/compare/v0.1.1...master)
[Full Changelog](https://github.com/RadiusNetworks/radius-spec/compare/v0.1.1...v0.2.0)

### Enhancements

- Adjust common Rubocop configuration (Aaron Kromer, #2):
- Ignore `Lint/AmbiguousBlockAssociation` for specs
- Ignore long lines due to Rubocop directives
- Ignore long lines due to comments
- Prefer a line length of 80, but don't complain until 90
- Prefer a line length of 80, but don't complain until 100
- Disable ASCII only comments
- Set the `MinSize` for `Style/SymbolArray` and `Style/WordArray` to three
- Use squiggly `<<~` heredoc indentation
Expand All @@ -19,10 +19,6 @@
- Ignore `Rails/ApplicationRecord` for benchmarks
- Ignore more common gem binstubs

### Bug Fixes

- TODO


## 0.1.1 (March 16, 2018)

Expand Down
2 changes: 1 addition & 1 deletion lib/radius/spec/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Radius
module Spec
VERSION = "0.2.pre"
VERSION = "0.2.0"
end
end

0 comments on commit abf3756

Please sign in to comment.