Sha256: 8863fe3e83d85515fac8417ee221cac7464456c4cbfd3ebbe3899991fe6e6ab0

Contents?: true

Size: 1.9 KB

Versions: 1

Compression:

Stored size: 1.9 KB

Contents

# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 6.0.4 - 2020-07-06
### Changed
- Upgraded rubocop to >= 0.86 and opted into the new cops.

## 6.0.1 - 2020-05-06
### Changed
- Don't enforce Style/FormatStringToken. We use template style strings heavily, and don't feel that annotated strings are a necessary improvement.

## 6.0.0 - 2020-04-27
### Changed
- Upgraded rubocop to >= 0.82 and opted into the 7 new cops.
- Going forward we will need to explicitly opt into or out of every new cop.

## 5.1.0 - 2019-06-06
### Changed
- Added indentation cop, enforcing 2 space indentation.

  This allows Rubocop to automatically format code like this:

  ```ruby
  class Wizard
  def cast_spell
    # ...
  end
  end
  ```

  into this:

  ```ruby
  class Wizard
    def cast_spell
      # ...
    end
  end
  ```

## 5.0.0 - 2019-05-30
### Changed
- Enforce updating timestamps when changing Rails models.

## 4.1.0 - 2019-04-29
### Fixed
- Address errors from installing latest rubocop.

## 4.0.0 - 2019-04-23
### Added
- Added rubocop-vendor to enforce conventions on Rollbar usage.

## 3.1.1 - 2019-04-09
### Fixed
- Correctly require multiple dependencies.

## 3.0.5 - 2019-04-03
### Changed
- updated README

## 3.0.4 - 2019-03-06
### Changed
- Allow empty example group.

## 3.0.0 - 2019-02-26
### Changed
- Added rubocop-rspec to enforce good rspec hygiene. https://wealthsimple.quip.com/ywj9AznUePvo/HOWTO-ws-style-10-Rubocop-Upgrade-guide

## 2.0.0 - 2019-02-12
### Changed
- Use trailing dots for multiline chained method invocations. This prevents bugs when pasting Ruby snippets into REPLs.

## 0.4.7 - 2019-01-07
### Added
- Changelog file: human readable history.
- `data_schema.rb`, used by data-migrate gem is excluded by default.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ws-style-6.0.4 CHANGELOG.md