Skip to content

Commit 8b16d3c

Browse files
committed
chore(release): prepare for release
1 parent cf3c84f commit 8b16d3c

File tree

9 files changed

+211
-149
lines changed

9 files changed

+211
-149
lines changed

CHANGELOG.md

Lines changed: 190 additions & 138 deletions
Large diffs are not rendered by default.

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "odoo-lsp"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
authors = ["Viet Dinh <[email protected]>"]
66
description = "Language server for Odoo Python/JS/XML"
@@ -57,7 +57,7 @@ lasso = { version = "0.7.2", features = ["multi-threaded"] }
5757
intmap = "3.1.0"
5858
libflate = "2.0.0"
5959
phf = { version = "0.11.3", features = ["macros"] }
60-
ts-macros = { version = "0.4.1", path = "crates/ts-macros" }
60+
ts-macros = { version = "0.5.0", path = "crates/ts-macros" }
6161
bitflags = "2.6.0"
6262
pathdiff = "0.2.3"
6363
rayon = "1.8.0"

RELEASING.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Release Instructions
2+
3+
- Bump versions in `Cargo.toml`s and `package.json`
4+
- Run:
5+
6+
```sh
7+
git cliff --tag $NEW_VERSION -o CHANGELOG.md
8+
git tag $NEW_VERSION
9+
```
10+
11+
- Download .vsix file after CI is done, upload to marketplaces

cliff.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ filter_unconventional = true
4343
split_commits = false
4444
# regex for parsing and grouping commits
4545
commit_parsers = [
46-
{ message = "^feat", group = "Features" },
47-
{ message = "^fix", group = "Bug Fixes" },
46+
{ message = "^feat", group = "Added" },
47+
{ message = "^fix", group = "Fixed" },
4848
{ message = "^doc", group = "Documentation" },
4949
{ message = "^perf", group = "Performance" },
5050
{ message = "^ref", group = "Refactor" },

crates/ts-indent/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2021"
66
[dependencies]
77
tree-sitter.workspace = true
88
tree-sitter-scheme = { git = "https://github.com/6cdh/tree-sitter-scheme", version = "0.23.0", rev = "63e25a4a84142ae7ee0ee01fe3a32c985ca16745" }
9-
ts-macros = { version = "0.4.1", path = "../ts-macros" }
9+
ts-macros = { version = "0.5.0", path = "../ts-macros" }

crates/ts-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ts-macros"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
edition = "2021"
55
description = "tree-sitter convenience macros"
66
license = "MIT"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "odoo-lsp",
33
"description": "Language server for Odoo Python/JS/XML",
44
"license": "MIT",
5-
"version": "0.5.0",
5+
"version": "0.6.0",
66
"categories": [
77
"Programming Languages"
88
],

src/main.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@ use std::time::Duration;
7878
use ropey::Rope;
7979
use serde_json::Value;
8080
use tower_lsp_server::jsonrpc::Result;
81-
use tower_lsp_server::lsp_types::notification::{DidChangeConfiguration, Notification, Progress};
82-
use tower_lsp_server::lsp_types::request::WorkDoneProgressCreate;
81+
use tower_lsp_server::lsp_types::notification::{DidChangeConfiguration, Notification};
8382
use tower_lsp_server::lsp_types::*;
8483
use tower_lsp_server::{LanguageServer, LspService, Server};
8584
use tracing::{debug, error, info, instrument, warn};

0 commit comments

Comments
 (0)