Skip to content

Commit

Permalink
Prepare v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dduugg committed May 28, 2021
1 parent fbc30ca commit 2d873e9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,19 @@

## master (unreleased)

## 0.5.0 (2021-05-28)

### New features

* [#49](https://github.com/dduugg/yard-sorbet/issues/49) Apply `@abstract` tags to `abstact!`/`interface!` modules
* [#43](https://github.com/dduugg/yard-sorbet/issues/43) Add `T::Enum` support

### Bug fixes

* [#41](https://github.com/dduugg/yard-sorbet/issues/41) Fix superfluous return type of boolean method definitions with inline modifiers
* [#41](https://github.com/dduugg/yard-sorbet/issues/41) Fix superfluous return type of boolean methods with inline modifiers

### Changes

* Make `YARDSorbet::SigToYARD::IS_LEGACY_RUBY_VERSION` private
* Rename `YARDSorbet::SigHandler` to `YARDSorbet::Handlers::SigHandler`
* Rename `YARDSorbet::StructHandler` to `YARDSorbet::Handlers::StructHandler`
* Increase minimum `sorbet` version to `0.5.6289`
* Increase minimum `yard` version to `0.9.21`

Expand Down
2 changes: 1 addition & 1 deletion lib/yard-sorbet/handlers/abstract_dsl_handler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class YARDSorbet::Handlers::AbstractDSLHandler < YARD::Handlers::Ruby::Base
# The `@abstract` tag template
TAG_TEXT = 'Subclasses must implement the `abstract` methods below.'
# Extra text for class namespaces
CLASS_TAG_TEXT = T.let("This class cannont be directly instantiated. #{TAG_TEXT}", String)
CLASS_TAG_TEXT = T.let("It cannont be directly instantiated. #{TAG_TEXT}", String)

sig { void }
def process
Expand Down
2 changes: 1 addition & 1 deletion lib/yard-sorbet/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

module YARDSorbet
# {https://rubygems.org/gems/yard-sorbet Version history}
VERSION = '0.4.1'
VERSION = '0.5.0'
end

0 comments on commit 2d873e9

Please sign in to comment.