From 45c1650631004ae3dee7358b540f9be9a91c0e1e Mon Sep 17 00:00:00 2001 From: Boshen Date: Thu, 27 Jul 2023 13:17:33 +0800 Subject: [PATCH] chore(oxc_query): do not publish yet, it is not ready --- Cargo.toml | 5 +---- crates/oxc_query/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 18880266e..e643a7188 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,9 +12,6 @@ license = "MIT" repository = "https://github.com/Boshen/oxc" [workspace.dependencies] -# Release: -# * Edit these versions, commit -# * cargo ws version --amend --no-git-tag --no-git-push # publish = true oxc_allocator = { version = "0.0.7", path = "crates/oxc_allocator" } oxc_ast = { version = "0.0.7", path = "crates/oxc_ast" } @@ -28,13 +25,13 @@ oxc_parser = { version = "0.0.7", path = "crates/oxc_parser" } oxc_semantic = { version = "0.0.7", path = "crates/oxc_semantic" } oxc_span = { version = "0.0.7", path = "crates/oxc_span" } oxc_syntax = { version = "0.0.7", path = "crates/oxc_syntax" } -oxc_query = { version = "0.0.7", path = "crates/oxc_query" } # publish = false oxc_macros = { path = "crates/oxc_macros" } oxc_linter = { path = "crates/oxc_linter" } oxc_type_synthesis = { path = "crates/oxc_type_synthesis" } oxc_resolver = { path = "crates/oxc_resolver" } +oxc_query = { path = "crates/oxc_query" } oxc_tasks_common = { path = "tasks/common" } diff --git a/crates/oxc_query/Cargo.toml b/crates/oxc_query/Cargo.toml index e0213ede9..9ce0f1ec8 100644 --- a/crates/oxc_query/Cargo.toml +++ b/crates/oxc_query/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "oxc_query" -version = "0.0.7" -publish = true +version = "0.0.0" +publish = false authors.workspace = true description.workspace = true edition.workspace = true