Skip to content

Commit

Permalink
chore: Update supabase-rs dependency to version 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
floris-xlx committed Jul 5, 2024
1 parent 4562aac commit 98fbf41
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "supabase_rs"
version = "0.3.2"
version = "0.3.3"
edition = "2021"
authors = ["Floris floris@xylex.ai"]
description = "Lightweight Rust client for Supabase REST and GraphQL"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ This is an unofficial Rust SDK for [Supabase](https://supabase.io/), since there
## Cargo.toml
```toml
[dependencies]
supabase-rs = "0.3.2"
supabase-rs = "0.3.3"

// With the [storage] feature
supabase-rs = { version = "0.3.2", features = ["storage"] }
supabase-rs = { version = "0.3.3", features = ["storage"] }
```
//!
## Usage
Expand Down
2 changes: 1 addition & 1 deletion src/insert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl SupabaseClient {
.header("apikey", &self.api_key)
.header("Authorization", format!("Bearer {}", &self.api_key))
.header("Content-Type", "application/json")
.header("x_client_info", "supabase-rs/0.3.2")
.header("x_client_info", "supabase-rs/0.3.3")
.body(body.to_string())
.send()
.await {
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
//! ## Cargo.toml
//! ```toml
//! [dependencies]
//! supabase-rs = "0.3.2"
//! supabase-rs = "0.3.3"
//!
//! // With the [storage] feature
//! supabase-rs = { version = "0.3.2", features = ["storage"] }
//! supabase-rs = { version = "0.3.3", features = ["storage"] }
//! ```
//!
//! ## Usage
Expand Down
4 changes: 2 additions & 2 deletions src/select.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ impl SupabaseClient {
.header("Authorization", &format!("Bearer {}", &self.api_key))
.header("Content-Type", "application/json")
.header("prefer", "count=exact")
.header("x_client_info", "supabase-rs/0.3.2")
.header("x_client_info", "supabase-rs/0.3.3")
.send()
.await
{
Expand All @@ -210,7 +210,7 @@ impl SupabaseClient {
.header("apikey", &self.api_key)
.header("Authorization", &format!("Bearer {}", &self.api_key))
.header("Content-Type", "application/json")
.header("x_client_info", "supabase-rs/0.3.2")
.header("x_client_info", "supabase-rs/0.3.3")

.send()
.await
Expand Down

0 comments on commit 98fbf41

Please sign in to comment.