Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.

Commit 1def0e3

Browse files
authored
Revert "release: 13.0.0" (#4761)
1 parent 256a462 commit 1def0e3

File tree

115 files changed

+1180
-1342
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+1180
-1342
lines changed

CHANGELOG.md

Lines changed: 108 additions & 158 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,15 +244,14 @@ Here's a sample of the headings:
244244
```markdown
245245
## [Unreleased]
246246

247-
### Analyzer
248247
### CLI
249248
### Configuration
250249
### Editors
251250
### Formatter
252-
### JavaScript APIs
253251
### Linter
254252
### Parser
255253
### VSCode
254+
### JavaScript APIs
256255
```
257256

258257
When you edit a blank section:

Cargo.lock

Lines changed: 33 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,41 +34,41 @@ rome_control_flow = { path = "./crates/rome_control_flow" }
3434
rome_css_factory = { path = "./crates/rome_css_factory" }
3535
rome_css_parser = { path = "./crates/rome_css_parser" }
3636
rome_css_syntax = { path = "./crates/rome_css_syntax" }
37-
rome_deserialize = { version = "0.2.0", path = "./crates/rome_deserialize" }
38-
rome_diagnostics = { version = "0.2.0", path = "./crates/rome_diagnostics" }
39-
rome_diagnostics_categories = { version = "0.2.0", path = "./crates/rome_diagnostics_categories" }
37+
rome_deserialize = { version = "0.0.0", path = "./crates/rome_deserialize" }
38+
rome_diagnostics = { version = "0.0.1", path = "./crates/rome_diagnostics" }
39+
rome_diagnostics_categories = { version = "0.0.1", path = "./crates/rome_diagnostics_categories" }
4040
rome_diagnostics_macros = { version = "0.0.1", path = "./crates/rome_diagnostics_macros" }
4141
rome_flags = { path = "./crates/rome_flags" }
42-
rome_formatter = { version = "0.1.0", path = "./crates/rome_formatter" }
42+
rome_formatter = { version = "0.0.1", path = "./crates/rome_formatter" }
4343
rome_formatter_test = { path = "./crates/rome_formatter_test" }
4444
rome_fs = { path = "./crates/rome_fs" }
4545
rome_js_analyze = { path = "./crates/rome_js_analyze" }
46-
rome_js_factory = { version = "0.2.0", path = "./crates/rome_js_factory" }
46+
rome_js_factory = { version = "0.0.2", path = "./crates/rome_js_factory" }
4747
rome_js_formatter = { path = "./crates/rome_js_formatter" }
4848
rome_js_parser = { path = "./crates/rome_js_parser" }
4949
rome_js_semantic = { path = "./crates/rome_js_semantic" }
50-
rome_js_syntax = { version = "0.2.0", path = "./crates/rome_js_syntax" }
50+
rome_js_syntax = { version = "0.0.2", path = "./crates/rome_js_syntax" }
5151
rome_js_unicode_table = { version = "0.0.1", path = "./crates/rome_js_unicode_table" }
5252
rome_json_analyze = { path = "./crates/rome_json_analyze" }
53-
rome_json_factory = { version = "0.2.0", path = "./crates/rome_json_factory" }
53+
rome_json_factory = { version = "0.0.1", path = "./crates/rome_json_factory" }
5454
rome_json_formatter = { path = "./crates/rome_json_formatter" }
5555
rome_json_parser = { path = "./crates/rome_json_parser" }
56-
rome_json_syntax = { version = "0.2.0", path = "./crates/rome_json_syntax" }
56+
rome_json_syntax = { version = "0.0.1", path = "./crates/rome_json_syntax" }
5757
rome_lsp = { path = "./crates/rome_lsp" }
5858
rome_markup = { version = "0.0.1", path = "./crates/rome_markup" }
5959
rome_migrate = { path = "./crates/rome_migrate" }
60-
rome_parser = { version = "0.2.0", path = "./crates/rome_parser" }
61-
rome_rowan = { version = "0.2.0", path = "./crates/rome_rowan" }
60+
rome_parser = { version = "0.0.1", path = "./crates/rome_parser" }
61+
rome_rowan = { version = "0.0.1", path = "./crates/rome_rowan" }
6262
rome_service = { path = "./crates/rome_service" }
63-
rome_suppression = { version = "0.2.0", path = "./crates/rome_suppression" }
63+
rome_suppression = { version = "0.0.1", path = "./crates/rome_suppression" }
6464
rome_test_utils = { path = "./crates/rome_test_utils" }
6565
rome_text_edit = { version = "0.0.1", path = "./crates/rome_text_edit" }
6666
rome_text_size = { version = "0.0.1", path = "./crates/rome_text_size" }
6767
tests_macros = { path = "./crates/tests_macros" }
6868

6969
# Crates needed in the workspace
7070
bitflags = "2.3.1"
71-
bpaf = { version = "0.9.3", features = ["derive"] }
71+
bpaf = { version = "0.9.2", features = ["derive"] }
7272
countme = "3.0.1"
7373
dashmap = "5.4.0"
7474
indexmap = "1.9.3"

crates/rome_analyze/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition.workspace = true
44
license.workspace = true
55
name = "rome_analyze"
66
repository.workspace = true
7-
version = "0.2.0"
7+
version = "0.0.0"
88

99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

crates/rome_cli/src/cli_options.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ pub struct CliOptions {
4242
pub error_on_warnings: bool,
4343

4444
/// Reports information using the JSON format
45-
#[bpaf(long("json"), switch, hide_usage, hide)]
45+
#[bpaf(long("json"), switch, hide_usage)]
4646
pub json: bool,
4747
}
4848

crates/rome_cli/src/commands/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ pub enum RomeCommand {
155155
Init,
156156
/// Acts as a server for the Language Server Protocol over stdin/stdout
157157
#[bpaf(command("lsp-proxy"))]
158-
LspProxy(#[bpaf(external(cli_options), hide_usage)] CliOptions),
158+
LspProxy(#[bpaf(external(cli_options))] CliOptions),
159159
/// It updates the configuration when there are breaking changes
160160
#[bpaf(command)]
161161
Migrate(

0 commit comments

Comments
 (0)