Skip to content

Commit e4df1d2

Browse files
authored
chore: bump Wrappers version to 0.5.0 (#460)
1 parent 445c378 commit e4df1d2

File tree

17 files changed

+18
-17
lines changed

17 files changed

+18
-17
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
| [Cloudflare D1](./wasm-wrappers/fdw/cfd1_fdw) | A Wasm FDW for [Cloudflare D1](https://developers.cloudflare.com/d1/) |||
2828
| [Orb](./wasm-wrappers/fdw/orb_fdw) | A Wasm FDW for [Orb](https://www.withorb.com/) |||
2929
| [HubSpot](./wasm-wrappers/fdw/hubspot_fdw) | A Wasm FDW for [HubSpot](https://www.hubspot.com/) |||
30+
| [Slack](./wasm-wrappers/fdw/slack_fdw) | A Wasm FDW for [Slack](https://www.slack.com/) |||
3031

3132
### Warning
3233

supabase-wrappers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "supabase-wrappers"
3-
version = "0.1.21"
3+
version = "0.1.22"
44
edition = "2021"
55
authors = ["Supabase Inc. https://supabase.com/"]
66
license = "Apache-2.0"

wasm-wrappers/fdw/cal_fdw/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ impl CalFdw {
191191
impl Guest for CalFdw {
192192
fn host_version_requirement() -> String {
193193
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
194-
"^0.2.0".to_string()
194+
"^0.1.0".to_string()
195195
}
196196

197197
fn init(ctx: &Context) -> FdwResult {

wasm-wrappers/fdw/calendly_fdw/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ impl CalendlyFdw {
190190
impl Guest for CalendlyFdw {
191191
fn host_version_requirement() -> String {
192192
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
193-
"^0.2.0".to_string()
193+
"^0.1.0".to_string()
194194
}
195195

196196
fn init(ctx: &Context) -> FdwResult {

wasm-wrappers/fdw/cfd1_fdw/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ impl Cfd1Fdw {
284284
impl Guest for Cfd1Fdw {
285285
fn host_version_requirement() -> String {
286286
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
287-
"^0.2.0".to_string()
287+
"^0.1.0".to_string()
288288
}
289289

290290
fn init(ctx: &Context) -> FdwResult {

wasm-wrappers/fdw/clerk_fdw/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ impl ClerkFdw {
172172
impl Guest for ClerkFdw {
173173
fn host_version_requirement() -> String {
174174
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
175-
"^0.2.0".to_string()
175+
"^0.1.0".to_string()
176176
}
177177

178178
fn init(ctx: &Context) -> FdwResult {

wasm-wrappers/fdw/helloworld_fdw/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ impl HelloWorldFdw {
3030
impl Guest for HelloWorldFdw {
3131
fn host_version_requirement() -> String {
3232
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
33-
"^0.2.0".to_string()
33+
"^0.1.0".to_string()
3434
}
3535

3636
fn init(_ctx: &Context) -> FdwResult {

wasm-wrappers/fdw/hubspot_fdw/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ impl HubspotFdw {
212212
impl Guest for HubspotFdw {
213213
fn host_version_requirement() -> String {
214214
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
215-
"^0.2.0".to_string()
215+
"^0.1.0".to_string()
216216
}
217217

218218
fn init(ctx: &Context) -> FdwResult {

wasm-wrappers/fdw/notion_fdw/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ impl NotionFdw {
399399
impl Guest for NotionFdw {
400400
fn host_version_requirement() -> String {
401401
// semver ref: https://docs.rs/semver/latest/semver/enum.Op.html
402-
"^0.2.0".to_string()
402+
"^0.1.0".to_string()
403403
}
404404

405405
fn init(ctx: &Context) -> FdwResult {

0 commit comments

Comments
 (0)