Skip to content

Commit 1f5547c

Browse files
committed
bump crate versions:
- analyzer -> 0.8.10 - lsp-server -> 0.2.11 - ir -> 0.10.3
1 parent 7553eb3 commit 1f5547c

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/analyzer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ink-analyzer"
3-
version = "0.8.9"
3+
version = "0.8.10"
44
edition = "2021"
55
description = "A library for semantic analysis of ink! smart contract code."
66
license = "MIT OR Apache-2.0"

crates/ir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ink-analyzer-ir"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
edition = "2021"
55
description = "Intermediate representations (IRs) and abstractions of ink! smart contract code for ink! analyzer."
66
license = "MIT OR Apache-2.0"

crates/lsp-server/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.11] - 2023-10-28
11+
12+
- Add create project command.
13+
- Add diagnostics and quickfixes for ink! trait definition implementations.
14+
1015
## [0.2.10] - 2023-10-09
1116

1217
- General robustness improvements for semantic analyzer.

crates/lsp-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ink-lsp-server"
3-
version = "0.2.10"
3+
version = "0.2.11"
44
edition = "2021"
55
description = "A Language Server Protocol (LSP) implementation for the ink! smart contract programming language."
66
license = "MIT OR Apache-2.0"

crates/lsp-server/src/utils.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ pub fn request_id_as_str(id: RequestId) -> Option<String> {
103103
.and_then(|it| it.strip_suffix('\"'))
104104
.map(ToString::to_string)
105105
}
106+
106107
#[cfg(test)]
107108
mod tests {
108109
use super::*;

0 commit comments

Comments
 (0)