Skip to content

Commit

Permalink
Prepare for release v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tekert committed May 17, 2023
1 parent 33cc77c commit 22cef81
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,19 @@
Stdio server for handling requests from IDEs using the Dart Polisher formatter.

## [Unreleased]
- Grinder build task and pubspec version tool.

## [0.9.3] - 17/5/2023

### Changed
- Updated compatibility for Dart 3.0
- Updated libraries and pulled changes done to the legacy analysis_server.
- Stdout is now blocking instead of non-blocking
(IOSink blocks output by default, i made it non-bloking before and forgot about it).
- Exclude instrumentation log file from logged watch events to prevent loops.
- Grinder build task for CI and pubspec version tool (dart run grinder version, to check for version before compiling).

### Github Actions
- Made some github actions for CI so the vscode extension can pick the artifacts with an action.

## [0.9.1] - 10/10/2022
- Refactor The way Handlers are called from Requests, cleaner execution and error handling.
Expand Down Expand Up @@ -30,7 +42,8 @@ Stdio server for handling requests from IDEs using the Dart Polisher formatter.

- Some refactoring

[Unreleased]: https://github.com/xnfo-dart/formatter_server/compare/v0.9.1...HEAD
[Unreleased]: https://github.com/xnfo-dart/formatter_server/compare/v0.9.3...HEAD
[0.9.3]: https://github.com/xnfo-dart/formatter_server/releases/tag/v0.9.3
[0.9.1]: https://github.com/xnfo-dart/formatter_server/releases/tag/v0.9.1
[0.9.0]: https://github.com/xnfo-dart/formatter_server/releases/tag/v0.9.0
[0.8.8]: https://github.com/xnfo-dart/formatter_server/releases/tag/v0.8.8
2 changes: 1 addition & 1 deletion lib/src/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

import 'package:formatter_server/protocol/protocol_constants.dart' show PROTOCOL_VERSION;

const String SERVER_VERSION = "0.9.3-dev";
const String SERVER_VERSION = "0.9.3";

const String LISTEN_PROTOCOL_VERSION = PROTOCOL_VERSION;
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: formatter_server
description: >-
Provides Formatting API for IDEs. (uses dart_polisher as formatter)
version: 0.9.3-dev
version: 0.9.3
issue_tracker: https://github.com/xnfo-dart/formatter_server/issues
repository: https://github.com/xnfo-dart/formatter_server
environment:
Expand Down

0 comments on commit 22cef81

Please sign in to comment.