Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(repo): Publish packages #75

Merged
merged 7 commits into from
Mar 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ pubspec_overrides.yaml

## RUST ##
# will have compiled files and executables
debug/
target/

# These are backup files generated by rustfmt
Expand Down
4 changes: 4 additions & 0 deletions packages/celest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.0-dev.1

- Initial release of Celest Auth

## 0.2.0

- Bumps minimum Dart SDK to 3.3
Expand Down
6 changes: 3 additions & 3 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
version: 0.3.0-dev.1
homepage: https://celest.dev
repository: https://github.com/celest-dev/celest/tree/main/packages/celest

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

dependencies:
async: ^2.11.0
celest_auth: ^0.3.0
celest_core: ^0.2.0
celest_auth: ^0.3.0-dev.1
celest_core: ^0.3.0-dev.1
chunked_stream: ^1.4.2
meta: ^1.9.0
shelf: ^1.4.1
Expand Down
9 changes: 0 additions & 9 deletions packages/celest/pubspec_overrides.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion packages/celest_auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## 0.3.0
## 0.3.0-dev.1

- Initial version.

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

12 changes: 10 additions & 2 deletions packages/celest_auth/example/celest/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,18 @@ environment:
sdk: ^3.3.0

dependencies:
celest: ^0.2.0
celest_core: ^0.2.0
celest: ^0.3.0-dev.1
celest_core: ^0.3.0-dev.1
http: ">=0.13.0 <2.0.0"

dependency_overrides:
celest:
path: ../../../celest
celest_auth:
path: ../../
celest_core:
path: ../../../celest_core

dev_dependencies:
lints: ^3.0.0
test: ^1.24.0
11 changes: 0 additions & 11 deletions packages/celest_auth/example/celest/pubspec_overrides.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions packages/celest_auth/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: celest_auth
description: The Auth runtime and client library for Celest, the Flutter cloud platform.
version: 0.3.0
version: 0.3.0-dev.1
homepage: https://celest.dev
repository: https://github.com/celest-dev/celest/tree/main/packages/celest_auth

Expand All @@ -12,7 +12,7 @@ dependencies:
built_collection: ^5.1.1
built_value: ^8.9.1
cedar: ^0.1.0
celest_core: ^0.2.0
celest_core: ^0.3.0-dev.1
chunked_stream: ^1.4.2
corks_cedar: ^0.1.0
ffi: ^2.1.2
Expand Down
7 changes: 0 additions & 7 deletions packages/celest_auth/pubspec_overrides.yaml

This file was deleted.

5 changes: 3 additions & 2 deletions packages/celest_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 0.2.2-wip
## 0.3.0-dev.1

- Adds `SecureStorage` interface for storage of sensitive data in the platform keychain.
- Adds `SecureStorage` interface for storage of sensitive data in the platform keychain
- Adds core Auth types and interfaces

## 0.2.1

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

environment:
sdk: ^3.3.0
flutter: ">=3.19.0"

dependencies:
collection: ^1.18.0
Expand Down