Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.1.0 #3

Merged
merged 1 commit into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bluejay-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bluejay-core"
version = "0.1.0-alpha.5"
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/adampetro/bluejay"
Expand Down
4 changes: 2 additions & 2 deletions bluejay-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bluejay-parser"
version = "0.1.0-alpha.5"
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/adampetro/bluejay"
Expand All @@ -13,7 +13,7 @@ description = "A GraphQL parser"
logos = { version = "0.14" }
enum-as-inner = "0.6"
ariadne = { version = "0.4.1", optional = true }
bluejay-core = { version = "0.1.0-alpha.5", path = "../bluejay-core" }
bluejay-core = { version = "0.1.0", path = "../bluejay-core" }
strum = { version = "0.26", features = ["derive"] }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions bluejay-printer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bluejay-printer"
version = "0.1.0-alpha.5"
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/adampetro/bluejay"
Expand All @@ -13,7 +13,7 @@ description = "A GraphQL printer"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bluejay-core = { version = "0.1.0-alpha.5", path = "../bluejay-core" }
bluejay-core = { version = "0.1.0", path = "../bluejay-core" }

[dev-dependencies]
insta = { version = "1.28", features = ["glob"] }
Expand Down
6 changes: 3 additions & 3 deletions bluejay-schema-comparator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bluejay-schema-comparator"
version = "0.1.0-alpha.5"
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/adampetro/bluejay"
Expand All @@ -11,8 +11,8 @@ description = "A GraphQL schema comparator"

[dependencies]
strum = { version = "0.26", features = ["derive"] }
bluejay-core = { version = "0.1.0-alpha.5", path = "../bluejay-core" }
bluejay-printer = { version = "0.1.0-alpha.5", path = "../bluejay-printer" }
bluejay-core = { version = "0.1.0", path = "../bluejay-core" }
bluejay-printer = { version = "0.1.0", path = "../bluejay-printer" }

[dev-dependencies]
bluejay-parser = { path = "../bluejay-parser" }
8 changes: 4 additions & 4 deletions bluejay-typegen-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bluejay-typegen-macro"
version = "0.1.0-alpha.5"
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/adampetro/bluejay"
Expand All @@ -12,9 +12,9 @@ description = "Macros for `bluejay-typegen`"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bluejay-core = { version = "0.1.0-alpha.5", path = "../bluejay-core" }
bluejay-parser = { version = "0.1.0-alpha.5", path = "../bluejay-parser", features = ["format-errors"] }
bluejay-validator = { version = "0.1.0-alpha.5", path = "../bluejay-validator" }
bluejay-core = { version = "0.1.0", path = "../bluejay-core" }
bluejay-parser = { version = "0.1.0", path = "../bluejay-parser", features = ["format-errors"] }
bluejay-validator = { version = "0.1.0", path = "../bluejay-validator" }
syn = { version = "2.0", features = ["full"] }
quote = "1.0"
proc-macro2 = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions bluejay-typegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bluejay-typegen"
version = "0.1.0-alpha.5"
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/adampetro/bluejay"
Expand All @@ -10,7 +10,7 @@ exclude = [".gitignore", "tests/**/*"]
description = "A GraphQL type generator"

[dependencies]
bluejay-typegen-macro = { version = "0.1.0-alpha.5", path = "../bluejay-typegen-macro" }
bluejay-typegen-macro = { version = "0.1.0", path = "../bluejay-typegen-macro" }
# rename these packages to prevent the tests from passing if the macro generates code
# referencing them directly instead of the re-exports
srd = { package = "serde", version = "1.0", features = ["derive"], optional = true }
Expand Down
6 changes: 3 additions & 3 deletions bluejay-validator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bluejay-validator"
version = "0.1.0-alpha.5"
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/adampetro/bluejay"
Expand All @@ -10,8 +10,8 @@ exclude = [".gitignore", "tests/**/*"]
description = "A GraphQL validator"

[dependencies]
bluejay-core = { version = "0.1.0-alpha.5", path = "../bluejay-core" }
bluejay-parser = { version = "0.1.0-alpha.5", path = "../bluejay-parser", optional = true, features = ["format-errors"] }
bluejay-core = { version = "0.1.0", path = "../bluejay-core" }
bluejay-parser = { version = "0.1.0", path = "../bluejay-parser", optional = true, features = ["format-errors"] }
paste = "1.0"
itertools = "0.13.0"
serde_json = { version = "1.0", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions bluejay-visibility/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bluejay-visibility"
version = "0.1.0-alpha.5"
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/adampetro/bluejay"
Expand All @@ -13,7 +13,7 @@ description = "A GraphQL schema wrapper for enforcing visibility"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bluejay-core = { version = "0.1.0-alpha.5", path = "../bluejay-core" }
bluejay-core = { version = "0.1.0", path = "../bluejay-core" }
elsa = "1.8.1"
once_cell = "1.17"
enum-as-inner = "0.6"
Expand Down
Loading