Skip to content

Commit

Permalink
chore: prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Desdaemon committed Oct 4, 2023
1 parent 8444188 commit fc66163
Show file tree
Hide file tree
Showing 5 changed files with 465 additions and 6 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# [0.2.0](https://github.com/Desdaemon/odoo-lsp/compare/v0.1.2...v0.2.0) (2023-10-04)

### Bug Fixes

- broken queries ([ea4fca8](https://github.com/Desdaemon/odoo-lsp/commit/ea4fca88d33fdfe40a4491464d67d9e1f69549a8))
- **ci:** make nightly releases linear ([44828b5](https://github.com/Desdaemon/odoo-lsp/commit/44828b5399eabd99e25d0c1af569f921c69918d8))
- **ci:** run unit tests ([cbebeca](https://github.com/Desdaemon/odoo-lsp/commit/cbebecaeac881eef6224775fd25c411ac5403d2a))
- edge case with completion query ([f3a4c60](https://github.com/Desdaemon/odoo-lsp/commit/f3a4c60827bc8e1beadfe2c2adf8b651b2bcafa1))
- model indexing ([5b02082](https://github.com/Desdaemon/odoo-lsp/commit/5b02082079e6879d4c17cbe6a6a438ba4177684e))
- open/close capabilities ([6b259f6](https://github.com/Desdaemon/odoo-lsp/commit/6b259f65afad502c3e9f1c4c1d817db6bf802451))
- remove block_on and make all futures Send ([118664d](https://github.com/Desdaemon/odoo-lsp/commit/118664d0c6e8bb41f800f028c065a6cbcbf59f30))
- wrong path splitting ([8444188](https://github.com/Desdaemon/odoo-lsp/commit/84441880a690da8a15fc14696da086c2d022764f))

### Features

- hover arbitrary expressions ([e39e649](https://github.com/Desdaemon/odoo-lsp/commit/e39e649b5d268d057d208a575060059b8a7aebbf))
- resolve types of `super()` ([ef98f6b](https://github.com/Desdaemon/odoo-lsp/commit/ef98f6bb932c94c5427e69c883075d7e44a694ab))
- update models on save ([30f1687](https://github.com/Desdaemon/odoo-lsp/commit/30f16873d5bbf1f5f1d44192890733bad00d4555))

## [0.1.2](https://github.com/Desdaemon/odoo-lsp/compare/v0.1.1...v0.1.2) (2023-09-07)

### Features
Expand Down
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "odoo-lsp"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
authors = ["Viet Dinh <[email protected]>"]
description = "Language server for Odoo Python/JS/XML"
Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "odoo-lsp",
"description": "Language server for Odoo Python/JS/XML",
"license": "MIT",
"version": "0.1.2",
"version": "0.2.0",
"categories": [
"Programming Languages"
],
Expand Down Expand Up @@ -85,13 +85,14 @@
"test-compile": "tsc -p ./",
"compile": "cross-env NODE_ENV=production tsc -b",
"watch": "rm -rf dist && tsc -b -w",
"lint": "prettier --write . && cargo fmt && cargo clippy --fix --allow-staged",
"lint": "prettier --write . && cargo fmt && cargo clippy --fix --allow-dirty --allow-staged",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"build": "webpack --config webpack.config.js",
"package": "vsce package --no-dependencies",
"publish": "vsce publish --no-dependencies",
"miri": "cargo +nightly miri test"
"miri": "cargo +nightly miri test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"devDependencies": {
"@electron/rebuild": "^3.3.0",
Expand All @@ -103,6 +104,7 @@
"@typescript-eslint/parser": "^3.10.1",
"@vscode/test-electron": "^2.3.4",
"@vscode/vsce": "^2.20.1",
"conventional-changelog-cli": "^4.1.0",
"cross-env": "^7.0.3",
"esbuild": "^0.15.18",
"eslint": "^7.32.0",
Expand Down
Loading

0 comments on commit fc66163

Please sign in to comment.