Skip to content

Commit 192bb3b

Browse files
committed
chore(release): v0.11.0
1 parent ea48fc5 commit 192bb3b

5 files changed

Lines changed: 57 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,58 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.11.0] - 2025-03-10
6+
7+
### 🚀 Features
8+
9+
- Add support for generating docstrings for classes
10+
- Add `codeAnalyzer` option
11+
12+
### 🐛 Bug Fixes
13+
14+
- Set current supported Python version in notifications
15+
- Correct language server trace level based on extension log level
16+
- Prevent concurrent language server restarts
17+
18+
### 📚 Documentation
19+
20+
- *(readme)* Add link to github for feedback
21+
- *(changelog)* Generate changelog using `git-cliff`
22+
- *(readme)* Add icon to version badge
23+
- *(readme)* Replace license badge with number of installs badge
24+
25+
### 🚜 Refactor
26+
27+
- Reorganize structure of language server code
28+
- Merge server management into `ServerManager` class
29+
- Move `checkInterpreter` function to `python.ts`
30+
- Extract `logging.ts` from `log` folder
31+
- Merge `setup.ts` into `utilities.ts`
32+
- Move `getLSClientTraceLevel` function to `logging.ts`
33+
34+
### 🎨 Styling
35+
36+
- Sort typescript imports
37+
38+
### 🧪 Testing
39+
40+
- Add python tests
41+
42+
### ⚙️ Other
43+
44+
- Integrate `uv` dependency manager
45+
- *(deps)* Add `pyright` linter
46+
- *(deps)* Add `flake8-todo` linter
47+
- Improve description of extension options
48+
- *(deps)* Bump `black` formatter from 24.10.0 to 25.1.0
49+
- *(deps)* Bump `flake8` linter from 7.1.1 to 7.1.2
50+
- Add GitHub Actions workflow
51+
- Bump minimum supported VSCode version to 1.78
52+
- *(deps)* Add `@vscode/python-extension` package
53+
- Update `.vscodeignore` file to be up-to-date
54+
- *(deps)* Bump nodejs packages
55+
- Integrate `git-cliff` changelog generator
56+
557
## [0.10.1] - 2025-01-17
658

759
### ⚙️ Other

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "chatgpt-docstrings",
33
"displayName": "ChatGPT: Docstring Generator",
44
"description": "Automatically generate Python docstrings using ChatGPT.",
5-
"version": "0.10.1",
5+
"version": "0.11.0",
66
"preview": true,
77
"icon": "images/icon.png",
88
"serverInfo": {

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "chatgpt-docstrings"
3-
version = "0.10.1"
3+
version = "0.11.0"
44
requires-python = ">=3.9"
55

66
[dependency-groups]

uv.lock

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

0 commit comments

Comments
 (0)