Skip to content

Commit

Permalink
Set version to 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
d-markey committed Jun 27, 2023
1 parent 8bb2e59 commit eb028fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 2.5.0
## 2.4.0

- Reorganized example folder and updated README.
- Revised code generation strategy for operations map: previously, the operations map was generated in a mixin class and the (user-developed) service class had to derive from `WorkerService` *and* mix in with the generated mixin class. This is no longer required and the generated code now implements a private service class (deriving from the user's service class) which implements `WorkerService` with the generated operations map. This removes several constraints on service implementation and enables support of "plain old Dart objects" as Squadron services. User-developped service classes must be public and concrete (non-abstract, non-final, non-sealed...) and must provide an unnamed constructor which will be called by the associated generated `WorkerService` class.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const version = '2.5.0';
const version = '2.4.0';
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: squadron_builder
description: Dart code generator for Squadron workers. Implement your worker service and let squadron_builder bridge the gap with Web Workers and Isolates!
version: 2.5.0
version: 2.4.0
homepage: https://github.com/d-markey/squadron_builder
repository: https://github.com/d-markey/squadron_builder

Expand Down

0 comments on commit eb028fd

Please sign in to comment.