Skip to content

Commit

Permalink
Bump version to 8.1.0, update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronC81 committed Jan 1, 2023
1 parent 9509cdc commit baddfc5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ 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/).

## [8.1.0] - 2023-01-01
### Added
- Parsed method definitions can now have a modifier before the `def` keyword.

### Fixed
- Use `File#exist?` instead of `File#exists?` in CLI, fixing an exception on
Ruby 3.2.0.
- Resolved incorrect code generation for `T::Enum`s with only one variant.

## [8.0.0] - 2022-05-10
### Changed
- The parser now loads untyped methods named `initialize` as returning `void`, rather than
Expand Down
2 changes: 1 addition & 1 deletion lib/parlour/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# typed: strong
module Parlour
# The library version.
VERSION = '8.0.0'
VERSION = '8.1.0'
end
2 changes: 1 addition & 1 deletion rbi/parlour.rbi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# typed: strong
module Parlour
VERSION = '8.0.0'
VERSION = '8.1.0'

class ConflictResolver
extend T::Sig
Expand Down

0 comments on commit baddfc5

Please sign in to comment.