supabase / wrappers

Postgres Foreign Data Wrapper development framework in Rust.
http://fdw.dev
Apache License 2.0
562 stars 56 forks source link

0.3.1 Not Released on crates.io? #259

Closed theory closed 4 months ago

theory commented 6 months ago

Describe the bug

The v0.3.1 release says it incremented the pgrx dependency to 0.11.3, but the latest on crates.io says it's 0.11.2 (and the wrapper version is 0.1.17, so the versions confuse me).

imor commented 6 months ago

The versions are different because these are two different crates. The one on crates.io is supabase-wrappers, which is the framework crate. It wraps Postgres API (using pgrx) and exposes a higher level API to write a foreign data wrapper. This crate has version 0.1.17.

The wrappers crate is not published on crates.io. It contains a variety of foreign data wrappers written using the framework crate. It generates the shared lib extension we use in Postgres. It's version is 0.3.1.

If you need supabase-wrappers which depends on pgrx 0.11.3 I can release version 0.1.18.

burmecia commented 4 months ago

supabase-wrappers v0.1.18 is already released on crates.io