Skip to content

Commit 51013be

Browse files
committed
Release 0.1.10 adds intel mac support
1 parent 566655f commit 51013be

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-purs-gql"
3-
version = "0.1.9"
3+
version = "0.1.10"
44
edition = "2021"
55
default-run = "pursgql"
66
repository = "https://github.com/OxfordAbstracts/purescript-graphql-schema-gen"
@@ -43,7 +43,7 @@ ci = "github"
4343
# The installers to generate for each app
4444
installers = ["npm"]
4545
# Target platforms to build apps for (Rust target-triple syntax)
46-
targets = ["aarch64-apple-darwin", "x86_64-unknown-linux-gnu"]
46+
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]
4747
# The archive format to use for windows builds (defaults .zip)
4848
windows-archive = ".tar.gz"
4949
# The archive format to use for non-windows builds (defaults .tar.xz)

Diff for: src/main_check_needs_migrations.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async fn main() -> Result<()> {
2828
.max_connections(1)
2929
.connect(&test_db)
3030
.await
31-
.expect("Failed to create pool");
31+
.expect("Failed to create codegen database pool");
3232

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

0 commit comments

Comments
 (0)