Skip to content

Commit

Permalink
Bump version, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
pappasam committed May 28, 2021
1 parent 19e3dac commit b1bfd3a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
17 changes: 14 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

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).

## 0.30.3

### Fixed

RenameFile now works correctly: `kind` now correctly passed to RenameFile due to recently-released pygls updates. Minimum pygls version now 0.10.3.

## 0.30.2

### Changed
Expand Down Expand Up @@ -70,7 +76,7 @@ General TextEdit fixes for code refactoring:
### Fixed

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

## 0.28.4

Expand Down Expand Up @@ -106,7 +112,7 @@ Same functions as 0.28, but different tag.
### Removed

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

## 0.27.2

Expand Down Expand Up @@ -401,7 +407,7 @@ Same functions as 0.28, but different tag.

### Changed

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

## 0.12.1

Expand Down Expand Up @@ -577,3 +583,8 @@ Same functions as 0.28, but different tag.
### Fixed

- `mypy`, `pylint`, `black`, `toml-sort`, and `isort` all pass.
npm notice
npm notice New minor version of npm available! 7.6.0 -> 7.15.0
npm notice Changelog: <https://github.com/npm/cli/releases/tag/v7.15.0>
npm notice Run `npm install -g npm@7.15.0` to update!
npm notice
13 changes: 1 addition & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ line_length = 79

[tool.poetry]
name = "jedi-language-server"
version = "0.30.2"
version = "0.30.3"
description = "A language server for Jedi!"
authors = ["Sam Roeca <samuel.roeca@gmail.com>"]
readme = "README.md"
Expand Down Expand Up @@ -42,7 +42,7 @@ license = "MIT"
[tool.poetry.dependencies]
python = "^3.6.1"
jedi = "0.18.0"
pygls = "^0.10.2"
pygls = "^0.10.3"
pydantic = "^1.7"
docstring-to-markdown = "0.*"
importlib-metadata = { version = "^3.10.0", python = "~3.6 || ~3.7" }
Expand Down

0 comments on commit b1bfd3a

Please sign in to comment.