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

Fix pub score #20

Merged
merged 5 commits into from
Sep 22, 2023
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.0.3
- Unlock SDK >= 3.1.0.

## 0.0.2
- Added interop for the rest of the types in `mod.ts` and others that are visible from it.

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,5 @@ The main scenario is Supabase Edge Functions, but it should also work for other
Note: your filename may differ from the example

5. You can use the function now.

Note that because of the [bug in dart_edge](https://github.com/invertase/dart_edge/issues/50), SDK versions >= 3.1.0 are not actually supported.
4 changes: 1 addition & 3 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ version: 1.0.0
publish_to: none

environment:
# https://github.com/invertase/dart_edge/issues/50
# Tested with 3.0.6, but others should work too
sdk: '>=3.0.0 <3.1.0'
sdk: ^3.0.0

dependencies:
deno_postgres_interop:
Expand Down
6 changes: 2 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ name: deno_postgres_interop
description:
An interop for js package deno-postgres - PostgreSQL
driver that can be used in deno-deploy (supabase edge functions).
version: 0.0.2
version: 0.0.3
repository: https://github.com/solid-software/deno_postgres_interop

environment:
# https://github.com/invertase/dart_edge/issues/50
# Tested with 3.0.6, but others should work too
sdk: '>=3.0.0 <3.1.0'
sdk: ^3.0.0

dependencies:
args: ^2.4.2
Expand Down
Loading