Skip to content

Commit

Permalink
chore: Bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dnys1 committed Feb 29, 2024
1 parent ed24d39 commit 751823e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 16 deletions.
23 changes: 14 additions & 9 deletions packages/celest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
## 0.2.0-dev.3

## 0.2.0-dev.2

- Fix route path in heartbeat monitor

## 0.2.0-dev.1

## 0.2.0-dev
## 0.2.0

- Bumps minimum Dart SDK to 3.3
- Adds `JsonValue` hierarchy for representing JSON primitives safely
- 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.
- Adds support for `lib/models/` and `lib/exceptions/` folders for better organization of custom types

### Fixes
- fix: Celest crashing when editing files [#25](https://github.com/celest-dev/celest/issues/25)
- fix: Allow Object and Object?/dynamic is models, functions and exceptions [#35](https://github.com/celest-dev/celest/issues/35)
- fix: Incompatibility of custom toJson/fromJson with other non-Celest code [#38](https://github.com/celest-dev/celest/issues/38)
- 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)
- fix: Bug: Custom exception not thrown [#48](https://github.com/celest-dev/celest/issues/48)
- fix: DRY up exception handling in generated client [#49](https://github.com/celest-dev/celest/issues/49)

## 0.1.1

Expand Down
4 changes: 2 additions & 2 deletions packages/celest/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: celest
description: The Flutter cloud platform. Celest enables you to build your entire backend in Dart.
version: 0.2.0-dev.3
version: 0.2.0
homepage: https://celest.dev
repository: https://github.com/celest-dev/celest/tree/main/packages/celest

Expand All @@ -9,7 +9,7 @@ environment:

dependencies:
async: ^2.11.0
celest_core: ^0.2.0-0
celest_core: ^0.2.0
chunked_stream: ^1.4.2
meta: ^1.9.0
shelf: ^1.4.1
Expand Down
5 changes: 1 addition & 4 deletions packages/celest_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
## 0.2.0-dev.1
## 0.2.0

- Bumps minimum Dart SDK to 3.3
- Adds `JsonValue` hierarchy for representing JSON primitives safely
- Adds `Serializer.define` for creating serializers from functions
- Adds `TypeToken` to enable serialization of extension types

## 0.2.0-dev

- Make `SerializationException` implement `BadRequestException`

## 0.1.1
Expand Down
2 changes: 1 addition & 1 deletion packages/celest_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: celest_core
description: Celest types and utilities shared between the client and the cloud.
version: 0.2.0-dev.1
version: 0.2.0
homepage: https://celest.dev
repository: https://github.com/celest-dev/celest/tree/main/packages/celest_core

Expand Down

0 comments on commit 751823e

Please sign in to comment.