Skip to content

Commit 1365d37

Browse files
committed
chore: Bump version to 0.2.0
1 parent e22eb29 commit 1365d37

File tree

4 files changed

+18
-16
lines changed

4 files changed

+18
-16
lines changed

packages/celest/CHANGELOG.md

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
1-
## 0.2.0-dev.3
2-
3-
## 0.2.0-dev.2
4-
5-
- Fix route path in heartbeat monitor
6-
7-
## 0.2.0-dev.1
8-
9-
## 0.2.0-dev
1+
## 0.2.0
2+
3+
- Bumps minimum Dart SDK to 3.3
4+
- Adds `JsonValue` hierarchy for representing JSON primitives safely
5+
- Model/exception types from third-party packages no longer need to be exported from `models.dart`/`exceptions.dart`. Only types you've defined in your backend.
6+
- Adds support for `lib/models/` and `lib/exceptions/` folders for better organization of custom types
7+
8+
### Fixes
9+
- fix: Celest crashing when editing files [#25](https://github.com/celest-dev/celest/issues/25)
10+
- fix: Allow Object and Object?/dynamic is models, functions and exceptions [#35](https://github.com/celest-dev/celest/issues/35)
11+
- fix: Incompatibility of custom toJson/fromJson with other non-Celest code [#38](https://github.com/celest-dev/celest/issues/38)
12+
- fix: Allow the code to specify/check if Celest is running locally or in the cloud (and where in the cloud). [#43](https://github.com/celest-dev/celest/issues/43)
13+
- fix: Bug: Custom exception not thrown [#48](https://github.com/celest-dev/celest/issues/48)
14+
- fix: DRY up exception handling in generated client [#49](https://github.com/celest-dev/celest/issues/49)
1015

1116
## 0.1.1
1217

packages/celest/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: celest
22
description: The Flutter cloud platform. Celest enables you to build your entire backend in Dart.
3-
version: 0.2.0-dev.3
3+
version: 0.2.0
44
homepage: https://celest.dev
55
repository: https://github.com/celest-dev/celest/tree/main/packages/celest
66

@@ -9,7 +9,7 @@ environment:
99

1010
dependencies:
1111
async: ^2.11.0
12-
celest_core: ^0.2.0-0
12+
celest_core: ^0.2.0
1313
chunked_stream: ^1.4.2
1414
meta: ^1.9.0
1515
shelf: ^1.4.1

packages/celest_core/CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
## 0.2.0-dev.1
1+
## 0.2.0
22

33
- Bumps minimum Dart SDK to 3.3
44
- Adds `JsonValue` hierarchy for representing JSON primitives safely
55
- Adds `Serializer.define` for creating serializers from functions
66
- Adds `TypeToken` to enable serialization of extension types
7-
8-
## 0.2.0-dev
9-
107
- Make `SerializationException` implement `BadRequestException`
118

129
## 0.1.1

packages/celest_core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: celest_core
22
description: Celest types and utilities shared between the client and the cloud.
3-
version: 0.2.0-dev.1
3+
version: 0.2.0
44
homepage: https://celest.dev
55
repository: https://github.com/celest-dev/celest/tree/main/packages/celest_core
66

0 commit comments

Comments
 (0)