Skip to content

Commit b1bfd3a

Browse files
committed
Bump version, update changelog
1 parent 19e3dac commit b1bfd3a

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

CHANGELOG.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.30.3
8+
9+
### Fixed
10+
11+
RenameFile now works correctly: `kind` now correctly passed to RenameFile due to recently-released pygls updates. Minimum pygls version now 0.10.3.
12+
713
## 0.30.2
814

915
### Changed
@@ -70,7 +76,7 @@ General TextEdit fixes for code refactoring:
7076
### Fixed
7177

7278
- Handle TextEdit edge case where opcode is checked for 1 past last character. Resolves <https://github.com/pappasam/jedi-language-server/issues/96>
73-
- No longer return textEdit actions from Jedi that aren't valid Python. Prevents all sorts of wonkyness.
79+
- No longer return textEdit actions from Jedi that aren't valid Python. Prevents all sorts of wonkiness.
7480

7581
## 0.28.4
7682

@@ -106,7 +112,7 @@ Same functions as 0.28, but different tag.
106112
### Removed
107113

108114
- Support for Python 3.6.0. We now only support Python 3.6.1+.
109-
- Monkeypatch for `null` versus `missing` attributes. `pydantic` / `pygls>=0.10.0` handles this.
115+
- Monkey patch for `null` versus `missing` attributes. `pydantic` / `pygls>=0.10.0` handles this.
110116

111117
## 0.27.2
112118

@@ -401,7 +407,7 @@ Same functions as 0.28, but different tag.
401407

402408
### Changed
403409

404-
- jedi completion `param` sorts first in COMPLETION. Resolves https://github.com/pappasam/jedi-language-server/issues/19
410+
- jedi completion `param` sorts first in COMPLETION. Resolves <https://github.com/pappasam/jedi-language-server/issues/19>
405411

406412
## 0.12.1
407413

@@ -577,3 +583,8 @@ Same functions as 0.28, but different tag.
577583
### Fixed
578584

579585
- `mypy`, `pylint`, `black`, `toml-sort`, and `isort` all pass.
586+
npm notice
587+
npm notice New minor version of npm available! 7.6.0 -> 7.15.0
588+
npm notice Changelog: <https://github.com/npm/cli/releases/tag/v7.15.0>
589+
npm notice Run `npm install -g [email protected]` to update!
590+
npm notice

poetry.lock

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ line_length = 79
1111

1212
[tool.poetry]
1313
name = "jedi-language-server"
14-
version = "0.30.2"
14+
version = "0.30.3"
1515
description = "A language server for Jedi!"
1616
authors = ["Sam Roeca <[email protected]>"]
1717
readme = "README.md"
@@ -42,7 +42,7 @@ license = "MIT"
4242
[tool.poetry.dependencies]
4343
python = "^3.6.1"
4444
jedi = "0.18.0"
45-
pygls = "^0.10.2"
45+
pygls = "^0.10.3"
4646
pydantic = "^1.7"
4747
docstring-to-markdown = "0.*"
4848
importlib-metadata = { version = "^3.10.0", python = "~3.6 || ~3.7" }

0 commit comments

Comments
 (0)