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

Commit

Permalink
chore: update version numbers (#4350)
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico authored Apr 5, 2023
1 parent e82c977 commit 38104b3
Show file tree
Hide file tree
Showing 16 changed files with 88 additions and 182 deletions.
3 changes: 3 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ documentation = """
-p rome_cli \
-p rome_console \
-p rome_*parser \
-p rome_text_edit \
-p rome_text_size \
-p rome_markup \
-p rome_rowan
--no-deps
"""
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

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

11 changes: 6 additions & 5 deletions crates/rome_console/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
[package]
name = "rome_console"
version = "0.0.0"
version = "0.0.1"
edition = "2021"
authors = ["Rome Tools Developers and Contributors"]
repository = "https://github.com/rome/tools"
license = "MIT"

description = "Expose utilities to print HTML-syntax messages"
repository = "https://github.com/rome/tools"
documentation = "https://rustdocs.rome.tools/rome_console/index.html"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rome_markup = { path = "../rome_markup" }
rome_markup = { version = "0.0.1", path = "../rome_markup" }
atty = "0.2.14"
rome_text_size = { path = "../rome_text_size"}
rome_text_size = { version = "0.0.1", path = "../rome_text_size"}
termcolor = "1.1.2"
unicode-width = "0.1.9"
serde = { version = "1.0.133", optional = true, features = ["derive"] }
Expand Down
19 changes: 10 additions & 9 deletions crates/rome_diagnostics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[package]
name = "rome_diagnostics"
version = "0.0.0"
authors = ["RSLint developers"]
version = "0.0.1"
authors = ["Rome Tools Developers and Contributors"]
edition = "2021"
license = "MIT"
description = "Pretty error reporting library based on codespan-reporting built for the RSLint project"
description = "Pretty error reporting library"
documentation = "https://rustdocs.rome.tools/rome_diagnostics/index.html"

[[example]]
name = "cli"
Expand All @@ -23,12 +24,12 @@ name = "serde"
test = true

[dependencies]
rome_rowan = { path = "../rome_rowan" }
rome_console = { path = "../rome_console", features = ["serde_markup"] }
rome_diagnostics_macros = { path = "../rome_diagnostics_macros" }
rome_diagnostics_categories = { path = "../rome_diagnostics_categories", features = ["serde"] }
rome_text_edit = { path = "../rome_text_edit" }
rome_text_size = { path = "../rome_text_size" }
rome_rowan = { version = "0.0.1", path = "../rome_rowan" }
rome_console = { version = "0.0.1", path = "../rome_console", features = ["serde_markup"] }
rome_diagnostics_macros = { version = "0.0.1", path = "../rome_diagnostics_macros" }
rome_diagnostics_categories = { version = "0.0.1", path = "../rome_diagnostics_categories", features = ["serde"] }
rome_text_edit = { version = "0.0.1", path = "../rome_text_edit" }
rome_text_size = { version = "0.0.1", path = "../rome_text_size" }
unicode-width = "0.1.9"
serde = { version = "1.0.133", features = ["derive"] }
termcolor = "1.1.2"
Expand Down
4 changes: 3 additions & 1 deletion crates/rome_diagnostics_categories/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
[package]
name = "rome_diagnostics_categories"
version = "0.0.0"
version = "0.0.1"
authors = ["Rome Tools Developers and Contributors"]
repository = "https://github.com/rome/tools"
license = "MIT"
edition = "2021"
description = "Diagnostic categories for rome_diagnostics. It exposes a macro that emits compile-time errors for extranous categories."
documentation = "https://rustdocs.rome.tools/rome_diagnostics/index.html"

[dependencies]
serde = { version = "1.0.136", optional = true }
Expand Down
6 changes: 4 additions & 2 deletions crates/rome_diagnostics_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
[package]
name = "rome_diagnostics_macros"
version = "0.0.0"
version = "0.0.1"
authors = ["Rome Tools Developers and Contributors"]
repository = "https://github.com/rome/tools"
license = "MIT"
edition = "2021"
repository = "https://github.com/rome/tools"
documentation = "https://rustdocs.rome.tools/rome_diagnostics/index.html"
description = "A Macro to make a struct type a Rome diagnostic."

[lib]
proc-macro = true
Expand Down
10 changes: 6 additions & 4 deletions crates/rome_js_factory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
[package]
name = "rome_js_factory"
version = "0.0.0"
version = "0.0.1"
edition = "2021"
authors = ["Rome Tools Developers and Contributors"]
repository = "https://github.com/rome/tools"
license = "MIT"
description = "Utilities to create JavaScript AST for rome_js_parser"
repository = "https://github.com/rome/tools"
documentation = "https://rustdocs.rome.tools/rome_js_factory/index.html"

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

[dependencies]
rome_rowan = { path = "../rome_rowan" }
rome_js_syntax = { path = "../rome_js_syntax" }
rome_rowan = { version = "0.0.1",path = "../rome_rowan" }
rome_js_syntax = { version = "0.0.1",path = "../rome_js_syntax" }
117 changes: 0 additions & 117 deletions crates/rome_js_parser/CHANGELOG.md

This file was deleted.

18 changes: 10 additions & 8 deletions crates/rome_js_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
[package]
edition = "2021"
name = "rome_js_parser"
version = "0.0.0"
version = "0.0.1"
authors = ["Rome Tools Developers and Contributors"]
license = "MIT"
description = "An extremely fast ECMAScript parser made for the rslint project"
repository = "https://github.com/rome/tools"
documentation = "https://rustdocs.rome.tools/rome_js_parser/index.html"


[dependencies]
rome_console = { path = "../rome_console" }
rome_diagnostics = { path = "../rome_diagnostics" }
rome_js_syntax = { path = "../rome_js_syntax" }
rome_js_factory = { path = "../rome_js_factory" }
rome_js_unicode_table = { path = "../rome_js_unicode_table" }
rome_rowan = { path = "../rome_rowan" }
rome_parser = { path = "../rome_parser" }
rome_console = { version = "0.0.1",path = "../rome_console" }
rome_diagnostics = { version = "0.0.1",path = "../rome_diagnostics" }
rome_js_syntax = { version = "0.0.1",path = "../rome_js_syntax" }
rome_js_factory = { version = "0.0.1",path = "../rome_js_factory" }
rome_js_unicode_table = { version = "0.0.1",path = "../rome_js_unicode_table" }
rome_rowan = { version = "0.0.1",path = "../rome_rowan" }
rome_parser = { version = "0.0.1",path = "../rome_parser" }
drop_bomb = "0.1.5"
bitflags = "1.3.2"
indexmap = { workspace = true }
Expand Down
Loading

0 comments on commit 38104b3

Please sign in to comment.