Skip to content

Commit bf45724

Browse files
committed
Bump version to support extra platforms
1 parent 51013be commit bf45724

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-purs-gql"
3-
version = "0.1.10"
3+
version = "0.1.11"
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-apple-darwin", "x86_64-unknown-linux-gnu"]
46+
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl"]
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)

src/main_check_needs_migrations.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ async fn main() -> Result<()> {
1212
.max_connections(1)
1313
.connect(&db_env)
1414
.await
15-
.expect("Failed to create pool");
15+
.expect("Failed to create pool for primary local database.");
1616

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

0 commit comments

Comments
 (0)