Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance committed Dec 23, 2022
1 parent 728a968 commit 70b9378
Show file tree
Hide file tree
Showing 11 changed files with 38 additions and 36 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## [Unreleased](https://github.com/dalance/procs/compare/v0.1.1...Unreleased) - ReleaseDate
## [Unreleased](https://github.com/dalance/veryl/compare/v0.1.2...Unreleased) - ReleaseDate

## [v0.1.2](https://github.com/dalance/procs/compare/v0.1.1...v0.1.2) - 2022-12-23

## [v0.1.1](https://github.com/dalance/procs/compare/v0.1.0...v0.1.1) - 2022-12-23
14 changes: 7 additions & 7 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.1.1-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md)
[![Changelog](https://img.shields.io/badge/changelog-v0.1.2-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md)

## Documentation quick links

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.1.1"
version = "0.1.2"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -14,4 +14,4 @@ edition = "2021"

[dependencies]
thiserror = {workspace = true}
veryl-parser = {version = "0.1.1", path = "../parser"}
veryl-parser = {version = "0.1.2", path = "../parser"}
6 changes: 3 additions & 3 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.1.1"
version = "0.1.2"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -14,5 +14,5 @@ edition = "2021"

[dependencies]
serde = {workspace = true}
veryl-metadata = {version = "0.1.1", path = "../metadata"}
veryl-parser = {version = "0.1.1", path = "../parser"}
veryl-metadata = {version = "0.1.2", path = "../metadata"}
veryl-parser = {version = "0.1.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.1.1"
version = "0.1.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.1.1", path = "../metadata"}
veryl-parser = {version = "0.1.1", path = "../parser"}
veryl-metadata = {version = "0.1.2", path = "../metadata"}
veryl-parser = {version = "0.1.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.1.1"
version = "0.1.2"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -17,7 +17,7 @@ dashmap = "5.4.0"
ropey = "1.5.0"
tokio = {version = "1.23.0", features = ["full"]}
tower-lsp = "0.17.0"
veryl-analyzer = {version = "0.1.1", path = "../analyzer"}
veryl-formatter = {version = "0.1.1", path = "../formatter"}
veryl-metadata = {version = "0.1.1", path = "../metadata"}
veryl-parser = {version = "0.1.1", path = "../parser"}
veryl-analyzer = {version = "0.1.2", path = "../analyzer"}
veryl-formatter = {version = "0.1.2", path = "../formatter"}
veryl-metadata = {version = "0.1.2", path = "../metadata"}
veryl-parser = {version = "0.1.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.1.1"
version = "0.1.2"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -17,4 +17,4 @@ semver = {version = "1.0", features = ["serde"]}
serde = {workspace = true}
thiserror = {workspace = true}
toml = "0.5.10"
veryl-parser = {version = "0.1.1", path = "../parser"}
veryl-parser = {version = "0.1.2", path = "../parser"}
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.1.1"
version = "0.1.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.1.1", path = "../analyzer"}
veryl-emitter = {version = "0.1.1", path = "../emitter"}
veryl-formatter = {version = "0.1.1", path = "../formatter"}
veryl-metadata = {version = "0.1.1", path = "../metadata"}
veryl-parser = {version = "0.1.1", path = "../parser"}
veryl-analyzer = {version = "0.1.2", path = "../analyzer"}
veryl-emitter = {version = "0.1.2", path = "../emitter"}
veryl-formatter = {version = "0.1.2", path = "../formatter"}
veryl-metadata = {version = "0.1.2", path = "../metadata"}
veryl-parser = {version = "0.1.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.1.1"
version = "0.1.2"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand Down Expand Up @@ -28,9 +28,9 @@ env_logger = "0.10.0"
serde_json = "1.0"
similar = {version = "2.2.1", features = ["text", "inline"]}
thiserror = {workspace = true}
veryl-analyzer = {version = "0.1.1", path = "../analyzer"}
veryl-emitter = {version = "0.1.1", path = "../emitter"}
veryl-formatter = {version = "0.1.1", path = "../formatter"}
veryl-metadata = {version = "0.1.1", path = "../metadata"}
veryl-parser = {version = "0.1.1", path = "../parser"}
veryl-analyzer = {version = "0.1.2", path = "../analyzer"}
veryl-emitter = {version = "0.1.2", path = "../emitter"}
veryl-formatter = {version = "0.1.2", path = "../formatter"}
veryl-metadata = {version = "0.1.2", path = "../metadata"}
veryl-parser = {version = "0.1.2", path = "../parser"}
walkdir = "2.3.2"

0 comments on commit 70b9378

Please sign in to comment.