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

Commit

Permalink
Revert "release: 13.0.0" (#4761)
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Aug 9, 2023
1 parent 256a462 commit 1def0e3
Show file tree
Hide file tree
Showing 115 changed files with 1,180 additions and 1,342 deletions.
266 changes: 108 additions & 158 deletions CHANGELOG.md

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,15 +244,14 @@ Here's a sample of the headings:
```markdown
## [Unreleased]

### Analyzer
### CLI
### Configuration
### Editors
### Formatter
### JavaScript APIs
### Linter
### Parser
### VSCode
### JavaScript APIs
```

When you edit a blank section:
Expand Down
67 changes: 33 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,41 +34,41 @@ rome_control_flow = { path = "./crates/rome_control_flow" }
rome_css_factory = { path = "./crates/rome_css_factory" }
rome_css_parser = { path = "./crates/rome_css_parser" }
rome_css_syntax = { path = "./crates/rome_css_syntax" }
rome_deserialize = { version = "0.2.0", path = "./crates/rome_deserialize" }
rome_diagnostics = { version = "0.2.0", path = "./crates/rome_diagnostics" }
rome_diagnostics_categories = { version = "0.2.0", path = "./crates/rome_diagnostics_categories" }
rome_deserialize = { version = "0.0.0", path = "./crates/rome_deserialize" }
rome_diagnostics = { version = "0.0.1", path = "./crates/rome_diagnostics" }
rome_diagnostics_categories = { version = "0.0.1", path = "./crates/rome_diagnostics_categories" }
rome_diagnostics_macros = { version = "0.0.1", path = "./crates/rome_diagnostics_macros" }
rome_flags = { path = "./crates/rome_flags" }
rome_formatter = { version = "0.1.0", path = "./crates/rome_formatter" }
rome_formatter = { version = "0.0.1", path = "./crates/rome_formatter" }
rome_formatter_test = { path = "./crates/rome_formatter_test" }
rome_fs = { path = "./crates/rome_fs" }
rome_js_analyze = { path = "./crates/rome_js_analyze" }
rome_js_factory = { version = "0.2.0", path = "./crates/rome_js_factory" }
rome_js_factory = { version = "0.0.2", path = "./crates/rome_js_factory" }
rome_js_formatter = { path = "./crates/rome_js_formatter" }
rome_js_parser = { path = "./crates/rome_js_parser" }
rome_js_semantic = { path = "./crates/rome_js_semantic" }
rome_js_syntax = { version = "0.2.0", path = "./crates/rome_js_syntax" }
rome_js_syntax = { version = "0.0.2", path = "./crates/rome_js_syntax" }
rome_js_unicode_table = { version = "0.0.1", path = "./crates/rome_js_unicode_table" }
rome_json_analyze = { path = "./crates/rome_json_analyze" }
rome_json_factory = { version = "0.2.0", path = "./crates/rome_json_factory" }
rome_json_factory = { version = "0.0.1", path = "./crates/rome_json_factory" }
rome_json_formatter = { path = "./crates/rome_json_formatter" }
rome_json_parser = { path = "./crates/rome_json_parser" }
rome_json_syntax = { version = "0.2.0", path = "./crates/rome_json_syntax" }
rome_json_syntax = { version = "0.0.1", path = "./crates/rome_json_syntax" }
rome_lsp = { path = "./crates/rome_lsp" }
rome_markup = { version = "0.0.1", path = "./crates/rome_markup" }
rome_migrate = { path = "./crates/rome_migrate" }
rome_parser = { version = "0.2.0", path = "./crates/rome_parser" }
rome_rowan = { version = "0.2.0", path = "./crates/rome_rowan" }
rome_parser = { version = "0.0.1", path = "./crates/rome_parser" }
rome_rowan = { version = "0.0.1", path = "./crates/rome_rowan" }
rome_service = { path = "./crates/rome_service" }
rome_suppression = { version = "0.2.0", path = "./crates/rome_suppression" }
rome_suppression = { version = "0.0.1", path = "./crates/rome_suppression" }
rome_test_utils = { path = "./crates/rome_test_utils" }
rome_text_edit = { version = "0.0.1", path = "./crates/rome_text_edit" }
rome_text_size = { version = "0.0.1", path = "./crates/rome_text_size" }
tests_macros = { path = "./crates/tests_macros" }

# Crates needed in the workspace
bitflags = "2.3.1"
bpaf = { version = "0.9.3", features = ["derive"] }
bpaf = { version = "0.9.2", features = ["derive"] }
countme = "3.0.1"
dashmap = "5.4.0"
indexmap = "1.9.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/rome_analyze/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition.workspace = true
license.workspace = true
name = "rome_analyze"
repository.workspace = true
version = "0.2.0"
version = "0.0.0"

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

Expand Down
2 changes: 1 addition & 1 deletion crates/rome_cli/src/cli_options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub struct CliOptions {
pub error_on_warnings: bool,

/// Reports information using the JSON format
#[bpaf(long("json"), switch, hide_usage, hide)]
#[bpaf(long("json"), switch, hide_usage)]
pub json: bool,
}

Expand Down
2 changes: 1 addition & 1 deletion crates/rome_cli/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ pub enum RomeCommand {
Init,
/// Acts as a server for the Language Server Protocol over stdin/stdout
#[bpaf(command("lsp-proxy"))]
LspProxy(#[bpaf(external(cli_options), hide_usage)] CliOptions),
LspProxy(#[bpaf(external(cli_options))] CliOptions),
/// It updates the configuration when there are breaking changes
#[bpaf(command)]
Migrate(
Expand Down
Loading

0 comments on commit 1def0e3

Please sign in to comment.