Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance committed Jan 24, 2023
1 parent 24e75ab commit 6ffce4e
Show file tree
Hide file tree
Showing 14 changed files with 48 additions and 46 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Change Log

## [Unreleased](https://github.com/dalance/veryl/compare/v0.2.1...Unreleased) - ReleaseDate
## [Unreleased](https://github.com/dalance/veryl/compare/v0.2.2...Unreleased) - ReleaseDate

## [v0.2.2](https://github.com/dalance/veryl/compare/v0.2.1...v0.2.2) - 2023-01-24

* [Added] attribute arguments check [#90](https://github.com/dalance/veryl/issues/90)
* [Added] metadata check [#91](https://github.com/dalance/veryl/issues/91)
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ If you have any idea, please open [Issue](https://github.com/dalance/veryl/issue

[![Actions Status](https://github.com/dalance/veryl/workflows/Regression/badge.svg)](https://github.com/dalance/veryl/actions)
[![Crates.io](https://img.shields.io/crates/v/veryl.svg)](https://crates.io/crates/veryl)
[![Changelog](https://img.shields.io/badge/changelog-v0.2.1-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md)
[![Changelog](https://img.shields.io/badge/changelog-v0.2.2-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md)

* [Document](https://dalance.github.io/veryl/book)
* [PlayGround](https://dalance.github.io/veryl/playground)
Expand Down
4 changes: 2 additions & 2 deletions crates/analyzer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl-analyzer"
version = "0.2.1"
version = "0.2.2"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -15,4 +15,4 @@ edition = "2021"
[dependencies]
miette = {workspace = true}
thiserror = {workspace = true}
veryl-parser = {version = "0.2.1", path = "../parser"}
veryl-parser = {version = "0.2.2", path = "../parser"}
8 changes: 4 additions & 4 deletions crates/emitter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl-emitter"
version = "0.2.1"
version = "0.2.2"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -14,6 +14,6 @@ edition = "2021"

[dependencies]
serde = {workspace = true}
veryl-analyzer = {version = "0.2.1", path = "../analyzer"}
veryl-metadata = {version = "0.2.1", path = "../metadata"}
veryl-parser = {version = "0.2.1", path = "../parser"}
veryl-analyzer = {version = "0.2.2", path = "../analyzer"}
veryl-metadata = {version = "0.2.2", path = "../metadata"}
veryl-parser = {version = "0.2.2", path = "../parser"}
6 changes: 3 additions & 3 deletions crates/formatter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl-formatter"
version = "0.2.1"
version = "0.2.2"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -13,5 +13,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
veryl-metadata = {version = "0.2.1", path = "../metadata"}
veryl-parser = {version = "0.2.1", path = "../parser"}
veryl-metadata = {version = "0.2.2", path = "../metadata"}
veryl-parser = {version = "0.2.2", path = "../parser"}
10 changes: 5 additions & 5 deletions crates/languageserver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl-ls"
version = "0.2.1"
version = "0.2.2"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -20,7 +20,7 @@ miette = {workspace = true}
serde_json = {workspace = true}
tokio = {version = "1.24.2", features = ["full"]}
tower-lsp = "0.18.0"
veryl-analyzer = {version = "0.2.1", path = "../analyzer"}
veryl-formatter = {version = "0.2.1", path = "../formatter"}
veryl-metadata = {version = "0.2.1", path = "../metadata"}
veryl-parser = {version = "0.2.1", path = "../parser"}
veryl-analyzer = {version = "0.2.2", path = "../analyzer"}
veryl-formatter = {version = "0.2.2", path = "../formatter"}
veryl-metadata = {version = "0.2.2", path = "../metadata"}
veryl-parser = {version = "0.2.2", path = "../parser"}
4 changes: 2 additions & 2 deletions crates/mdbook/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mdbook-veryl"
version = "0.2.1"
version = "0.2.2"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -21,4 +21,4 @@ pulldown-cmark = "0.9.2"
regex = {workspace = true}
semver = {workspace = true}
serde_json = {workspace = true}
veryl-parser = {version = "0.2.1", path = "../parser"}
veryl-parser = {version = "0.2.2", path = "../parser"}
4 changes: 2 additions & 2 deletions crates/metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl-metadata"
version = "0.2.1"
version = "0.2.2"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -24,7 +24,7 @@ spdx = "0.10.0"
thiserror = {workspace = true}
toml = "0.5.11"
url = {workspace = true}
veryl-parser = {version = "0.2.1", path = "../parser"}
veryl-parser = {version = "0.2.2", path = "../parser"}
walkdir = "2.3.2"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl-parser"
version = "0.2.1"
version = "0.2.2"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand Down
10 changes: 5 additions & 5 deletions crates/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
veryl-analyzer = {version = "0.2.1", path = "../analyzer"}
veryl-emitter = {version = "0.2.1", path = "../emitter"}
veryl-formatter = {version = "0.2.1", path = "../formatter"}
veryl-metadata = {version = "0.2.1", path = "../metadata"}
veryl-parser = {version = "0.2.1", path = "../parser"}
veryl-analyzer = {version = "0.2.2", path = "../analyzer"}
veryl-emitter = {version = "0.2.2", path = "../emitter"}
veryl-formatter = {version = "0.2.2", path = "../formatter"}
veryl-metadata = {version = "0.2.2", path = "../metadata"}
veryl-parser = {version = "0.2.2", path = "../parser"}

[dev-dependencies]
criterion = "0.4.0"
Expand Down
12 changes: 6 additions & 6 deletions crates/veryl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl"
version = "0.2.1"
version = "0.2.2"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand Down Expand Up @@ -31,8 +31,8 @@ miette = {workspace = true}
serde_json = {workspace = true}
similar = {version = "2.2.1", features = ["text", "inline"]}
thiserror = {workspace = true}
veryl-analyzer = {version = "0.2.1", path = "../analyzer"}
veryl-emitter = {version = "0.2.1", path = "../emitter"}
veryl-formatter = {version = "0.2.1", path = "../formatter"}
veryl-metadata = {version = "0.2.1", path = "../metadata"}
veryl-parser = {version = "0.2.1", path = "../parser"}
veryl-analyzer = {version = "0.2.2", path = "../analyzer"}
veryl-emitter = {version = "0.2.2", path = "../emitter"}
veryl-formatter = {version = "0.2.2", path = "../formatter"}
veryl-metadata = {version = "0.2.2", path = "../metadata"}
veryl-parser = {version = "0.2.2", path = "../parser"}
10 changes: 5 additions & 5 deletions crates/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ crate-type = ["cdylib"]
[dependencies]
miette = {workspace = true}
semver = {version = "1.0", features = ["serde"]}
veryl-analyzer = {version = "0.2.1", path = "../analyzer"}
veryl-emitter = {version = "0.2.1", path = "../emitter"}
veryl-formatter = {version = "0.2.1", path = "../formatter"}
veryl-metadata = {version = "0.2.1", path = "../metadata"}
veryl-parser = {version = "0.2.1", path = "../parser"}
veryl-analyzer = {version = "0.2.2", path = "../analyzer"}
veryl-emitter = {version = "0.2.2", path = "../emitter"}
veryl-formatter = {version = "0.2.2", path = "../formatter"}
veryl-metadata = {version = "0.2.2", path = "../metadata"}
veryl-parser = {version = "0.2.2", path = "../parser"}
wasm-bindgen = "0.2"

[package.metadata.release]
Expand Down
2 changes: 1 addition & 1 deletion support/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-veryl",
"displayName": "Veryl",
"description": "Veryl extension for Visual Studio Code",
"version": "0.2.1",
"version": "0.2.2",
"publisher": "dalance",
"engines": {
"vscode": "^1.74.0"
Expand Down

0 comments on commit 6ffce4e

Please sign in to comment.