Skip to content

Commit

Permalink
1.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
searls committed Jul 7, 2023
1 parent bac19c0 commit cd2a636
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 1.30.0

* Add `Standard::PluginSupport` module of classes designed to make it a little
easier to author plugins. `MergesUpstreamMetadata#merge` will allow a minimal
YAML config (say, `standard-sorbet`'s, which only contains `Enabled` values for
each rule) to merge in any other defaults from a source YAML (e.g.
`rubocop-sorbet`'s which includes `Description`, `VersionAdded`, and so on).
This way that metadata is neither absent at runtime nor duplicated in a standard
plugin that mirrors a rubocop extension

## 1.29.0

* Updates standard-performance to [1.1.0](https://github.com/standardrb/standard-performance/releases/tag/v1.1.0)
Expand Down
14 changes: 8 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
standard (1.29.0)
standard (1.30.0)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.52.0)
Expand All @@ -23,16 +23,18 @@ GEM
method_source (1.0.0)
minitest (5.18.0)
parallel (1.23.0)
parser (3.2.2.1)
parser (3.2.2.3)
ast (~> 2.4.1)
racc
racc (1.7.1)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.8.0)
regexp_parser (2.8.1)
rexml (3.2.5)
rubocop (1.52.0)
rubocop (1.52.1)
json (~> 2.3)
parallel (~> 1.10)
parser (>= 3.2.0.0)
parser (>= 3.2.2.3)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
Expand All @@ -51,7 +53,7 @@ GEM
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
standard-custom (1.0.0)
standard-custom (1.0.1)
lint_roller (~> 1.0)
standard-performance (1.1.0)
lint_roller (~> 1.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/standard/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Standard
VERSION = Gem::Version.new("1.29.0")
VERSION = Gem::Version.new("1.30.0")
end

0 comments on commit cd2a636

Please sign in to comment.