Skip to content

Commit

Permalink
chore: bump all packages versions (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
JounQin authored Feb 15, 2024
1 parent 2a2476b commit fe594e9
Show file tree
Hide file tree
Showing 16 changed files with 1,131 additions and 1,380 deletions.
1,160 changes: 575 additions & 585 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/lsp-async-stub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["tamasfe"]
description = "An LSP server stub for futures"
edition = "2021"
name = "lsp-async-stub"
version = "0.6.2"
version = "0.6.3"
license = "MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
6 changes: 6 additions & 0 deletions crates/taplo-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.9.1

### Fixes

- Do not enable default-tls unconditionally ([#554](https://github.com/tamasfe/taplo/pull/554))

## 0.9.0

### Features
Expand Down
8 changes: 4 additions & 4 deletions crates/taplo-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A CLI for Taplo TOML toolkit"
license = "MIT"
edition = "2021"
name = "taplo-cli"
version = "0.9.0"
version = "0.9.1"
homepage = "https://taplo.tamasfe.dev"
repository = "https://github.com/tamasfe/taplo"
categories = ["development-tools", "command-line-utilities"]
Expand Down Expand Up @@ -34,9 +34,9 @@ reqwest = { version = "0.11.9", default-features = false, features = [
schemars = "0.8"
serde = "1"
serde_json = "1"
taplo = { version = "0.13.0", path = "../taplo", features = ["serde"] }
taplo-common = { version = "0.5.0", path = "../taplo-common", default-features = false }
taplo-lsp = { version = "0.7.0", path = "../taplo-lsp", default-features = false, optional = true }
taplo = { version = "0.13.1", path = "../taplo", features = ["serde"] }
taplo-common = { version = "0.5.1", path = "../taplo-common", default-features = false }
taplo-lsp = { version = "0.7.1", path = "../taplo-lsp", default-features = false, optional = true }
time = { version = "0.3", features = ["parsing"] }
toml = "0.7"
tracing = "0.1.29"
Expand Down
8 changes: 7 additions & 1 deletion crates/taplo-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 0.5.1

### Fixes

- Bump dependencies to support RISC-V platform([#545](https://github.com/tamasfe/taplo/pull/545))
- Do not enable default-tls unconditionally ([#554](https://github.com/tamasfe/taplo/pull/554))

## 0.5.0

### Features
Expand All @@ -11,4 +18,3 @@
- Do not change the extension of catalog paths ([#426](https://github.com/tamasfe/taplo/pull/426))
- Update json_value_merge to 2.0.0 ([#474](https://github.com/tamasfe/taplo/pull/474))
- Save index to cache as it would be returned ([#524](https://github.com/tamasfe/taplo/pull/524))
- Bump dependencies to support RISC-V platform([#545](https://github.com/tamasfe/taplo/pull/545))
2 changes: 1 addition & 1 deletion crates/taplo-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "taplo-common"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
description = "Shared code for taplo utilities."
license = "MIT"
Expand Down
6 changes: 6 additions & 0 deletions crates/taplo-lsp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.7.1

### Fixes

- Do not enable default-tls unconditionally ([#554](https://github.com/tamasfe/taplo/pull/554))

## 0.7.0

### Fixes
Expand Down
8 changes: 4 additions & 4 deletions crates/taplo-lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["tamasf97 <tamasf97@outlook.com>"]
description = "Language server for Taplo"
edition = "2021"
name = "taplo-lsp"
version = "0.7.0"
version = "0.7.1"
license = "MIT"
homepage = "https://taplo.tamasfe.dev"
repository = "https://github.com/tamasfe/taplo"
Expand All @@ -24,7 +24,7 @@ figment = { version = "0.10.6", features = ["json"] }
futures = "0.3.5"
indexmap = { version = "1.6", features = ["serde"] }
itertools = "0.10.3"
lsp-async-stub = { version = "0.6.1", path = "../lsp-async-stub" }
lsp-async-stub = { version = "0.6.3", path = "../lsp-async-stub" }
lsp-types = { version = "0.93.0", features = ["proposed"] }
once_cell = "1.5"
parking_lot = "0.12.0"
Expand All @@ -36,8 +36,8 @@ schemars = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
tap = "1.0.1"
taplo = { version = "0.13.0", path = "../taplo", features = ["serde"] }
taplo-common = { version = "0.5.0", path = "../taplo-common", default-features = false }
taplo = { version = "0.13.1", path = "../taplo", features = ["serde"] }
taplo-common = { version = "0.5.1", path = "../taplo-common", default-features = false }
time = { version = "0.3", features = ["formatting", "parsing"] }
toml = "0.7"
tracing = "0.1.29"
Expand Down
Loading

0 comments on commit fe594e9

Please sign in to comment.