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 16, 2023
1 parent b2c88e3 commit ebb6dc6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,17 @@ members = [
]

[workspace.package]
version = "0.0.1"
version = "0.0.2"
license = "Apache-2.0"
edition = "2021"
authors = ["Mara Schulke <[email protected]>"]
description = "A lightweight sql framework for sustainable database reliant systems"
repository = "https://github.com/hemisphere-studio/atmosphere"
keywords = ["sqlx", "postgres", "database", "orm", "backend"]

[workspace.dependencies]
atmosphere-core = { version = "=0.0.1", path = "atmosphere-core" }
atmosphere-macros = { version = "=0.0.1", path = "atmosphere-macros" }
atmosphere-core = { version = "=0.0.2", path = "atmosphere-core" }
atmosphere-macros = { version = "=0.0.2", path = "atmosphere-macros" }
async-trait = "0.1"
lazy_static = "1"
sqlx = { version = "0.7", features = ["chrono"] }
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,11 @@ impl Table for User {
const SCHEMA: &str = "public"
const TABLE: &str = "user"
const PRIMARY_KEY: Column = Column { name: "id", ty: PrimaryKey, .. };
const FOREIGN_KEYS: [Column; 0] = [];
const DATA: [Column; 2] = [Column { name: "name", ty: Value }, Column { name: "email", ty: Value, } ];
const FOREIGN_KEYS: &'static [Column; 0] = &[];
const DATA: &'static [Column; 2] = &[
Column { name: "name", ty: Value, .. },
Column { name: "email", ty: Value, .. }
];
}
```

Expand Down

0 comments on commit ebb6dc6

Please sign in to comment.