Skip to content

Commit

Permalink
Version 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardSergeev committed Jun 23, 2024
1 parent bd1b7ab commit ed97130
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
# Change Log
All notable changes to the "Haskutil" extension will be documented in this file.


## [0.14.0] - 2024-06-23
### Added
* `Organize imports` now also sorts imported element lists ([#86](https://github.com/EduardSergeev/vscode-haskutil/issues/86)):
When sorting import declaration if `"haskutil.sortImportedElementLists"` is set to `true` (default value)
* An option to place operators at the end of imported element lists [#88](https://github.com/EduardSergeev/vscode-haskutil/issues/88):
When inserting new elements via `Add import` or sorting imported elements via `Organize imports` operators can now be placed after other type of elements, i.e. after functions, constructors or types.
This behavior is controlled via new configuration setting `"haskutil.placeOperatorsAfterFunctions"` which is set to `false` by default
### Changed
* Switch to [c8](https://github.com/bcoe/c8) for code coverage (fix [#87](https://github.com/EduardSergeev/vscode-haskutil/issues/87))


## [0.13.3] - 2024-06-19
### Fixed:
### Fixed
* `Add import` action's handling of operators containing `.` (dot)([#80](https://github.com/EduardSergeev/vscode-haskutil/issues/80)):
Previously no quick fix action was emitted for such operators (e.g. `(.&.)` or `(.=)`)
* `Add import` action's handling of names containing `'` (single quote) ([#81](https://github.com/EduardSergeev/vscode-haskutil/issues/81)):
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "haskutil",
"displayName": "Haskutil",
"description": "'QuickFix' actions for Haskell editor",
"version": "0.13.3",
"version": "0.14.0",
"publisher": "Edka",
"icon": "images/Haskutil-logo.png",
"repository": {
Expand Down

0 comments on commit ed97130

Please sign in to comment.