Skip to content

Commit 83b5e92

Browse files
committed
update version
1 parent d6ca137 commit 83b5e92

4 files changed

Lines changed: 25 additions & 21 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,14 @@ $ exit
117117

118118
ABCoder currently supports the following languages:
119119

120-
| Language | Parser | Writer |
121-
| -------- | ----------- | ----------- |
122-
| Go | ||
123-
| Rust | | Coming Soon |
124-
| C | | Coming Soon |
125-
| Python | | Coming Soon |
126-
| TypeScript | | Coming Soon |
127-
| Java | | Coming Soon |
120+
| Language | Parser | Writer |
121+
| ---------- | ------ | ----------- |
122+
| Go || |
123+
| Rust | | Coming Soon |
124+
| C | | Coming Soon |
125+
| Python | | Coming Soon |
126+
| TypeScript || Coming Soon |
127+
| Java | | Coming Soon |
128128

129129

130130
# Getting Involved

docs/lsp-installation-en.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ To parse dependencies between symbols in a repository, the abcoder parser requir
44

55
The mapping between languages and language servers is as follows:
66

7-
| Language | Language Server | Executable |
8-
| -------- | ------------------------- | --------------- |
9-
| Go | Does not use LSP, uses built-in parser | / |
10-
| Rust | rust-analyzer | rust-analyzer |
11-
| Python | (Modified) python-lsp-server | pylsp |
12-
| C | clangd-18 | clangd-18 |
7+
| Language | Language Server | Essential Environment |
8+
| ---------- | ------------------------------------------------------------------------------------- | --------------------- |
9+
| Go | NA | golang 1.23+ |
10+
| TypeScript | NA | node.js 20+ |
11+
| Rust | rust-analyzer (official) | rust-toolchain |
12+
| Python | pylsp ( [modified](https://github.com/Hoblovski/python-lsp-server) based on official) | Python 3.9+ |
13+
| C | clangd-18 (official) | clang 18+ |
14+
| Java | eclipse-jdtls (official) | openjdk 17+ |
1315

1416
Ensure the corresponding executable is in PATH before running abcoder.
1517

docs/lsp-installation-zh.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44

55
语言和 language server 的对应关系如下
66

7-
| 语言 | Language server | 可执行文件 |
8-
| --- | --- | --- |
9-
| Go | 不使用 LSP,使用内置 parser | / |
10-
| Rust | rust-analyzer | rust-analyzer |
11-
| Python | (修改后的) python-lsp-server | pylsp |
12-
| C | clangd-18 | clangd-18 |
7+
| 语言 | Language server | 必要运行环境 |
8+
| ---------- | ---------------------------------------------------------------------- | -------------- |
9+
| Go | NA | golang 1.23+ |
10+
| TypeScript | NA | node.js 20+ |
11+
| Rust | rust-analyzer (官方) | rust-toolchain |
12+
| Python | pylsp (基于官方[修改](https://github.com/Hoblovski/python-lsp-server)) | Python 3.9+ |
13+
| C | clangd-18 (官方) | clang 18+ |
14+
| Java | eclipse-jdtls (官方) | openjdk 17+ |
1315

1416
按如下教程完成安装后,在运行 abcoder 前请确保 PATH 中有对应可执行文件
1517

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
package main
1818

1919
const (
20-
Version = "0.1.0"
20+
Version = "0.1.3"
2121
)

0 commit comments

Comments
 (0)