Skip to content

Commit

Permalink
Release 0.1.10 adds intel mac support
Browse files Browse the repository at this point in the history
  • Loading branch information
finnhodgkin committed Oct 3, 2024
1 parent 566655f commit 51013be
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-purs-gql"
version = "0.1.9"
version = "0.1.10"
edition = "2021"
default-run = "pursgql"
repository = "https://github.com/OxfordAbstracts/purescript-graphql-schema-gen"
Expand Down Expand Up @@ -43,7 +43,7 @@ ci = "github"
# The installers to generate for each app
installers = ["npm"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-unknown-linux-gnu"]
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]
# The archive format to use for windows builds (defaults .zip)
windows-archive = ".tar.gz"
# The archive format to use for non-windows builds (defaults .tar.xz)
Expand Down
2 changes: 1 addition & 1 deletion src/main_check_needs_migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async fn main() -> Result<()> {
.max_connections(1)
.connect(&test_db)
.await
.expect("Failed to create pool");
.expect("Failed to create codegen database pool");

let test_result: Migrations = sqlx::query_as::<_, Migrations>(
r#"SELECT (cli_state->'migrations'->'default')::text as migrations from hdb_catalog.hdb_version;"#,
Expand Down

0 comments on commit 51013be

Please sign in to comment.