Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mara-schulke committed Nov 25, 2023
1 parent 71e14ae commit 45f4dbe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ members = [
]

[workspace.package]
version = "0.1.0"
version = "0.1.1"
license = "Apache-2.0"
edition = "2021"
authors = ["Mara Schulke <[email protected]>"]
Expand All @@ -15,8 +15,8 @@ repository = "https://github.com/mara-schulke/atmosphere"
keywords = ["sqlx", "postgres", "database", "orm", "backend"]

[workspace.dependencies]
atmosphere-core = { version = "=0.1.0", path = "atmosphere-core" }
atmosphere-macros = { version = "=0.1.0", path = "atmosphere-macros" }
atmosphere-core = { version = "=0.1.1", path = "atmosphere-core" }
atmosphere-macros = { version = "=0.1.1", path = "atmosphere-macros" }
async-trait = "0.1"
lazy_static = "1"
sqlx = { version = "0.7", features = ["chrono"] }
Expand All @@ -43,7 +43,7 @@ path = "tests/lib.rs"
test = true

[features]
default = ["sqlite", "mysql", "postgres"]
default = ["postgres"]
any = ["sqlx/any"]
mysql = ["sqlx/mysql"]
postgres = ["sqlx/postgres"]
Expand Down
6 changes: 3 additions & 3 deletions atmosphere-macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ use schema::table::Table;
///
/// Usage:
///
/// ```rust
/// ```ignore
/// #[derive(Schema)]
/// struct User {
/// #[sql(pk)]
Expand Down Expand Up @@ -63,7 +63,7 @@ pub fn schema(input: TokenStream) -> TokenStream {
///
/// Usage:
///
/// ```rust
/// ```ignore
/// #[table(schema = "public", name = "your_table_name")]
/// ```
#[proc_macro_attribute]
Expand Down Expand Up @@ -119,7 +119,7 @@ pub fn table(_: TokenStream, input: TokenStream) -> TokenStream {
///
/// Usage:
///
/// ```rust
/// ```ignore
/// #[hooks(path::to::my::Hook)]
/// struct MyTable { .. }
/// ```
Expand Down

0 comments on commit 45f4dbe

Please sign in to comment.