Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/test-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
with:
node-version: 22
cache: 'npm'
cache-dependency-path: editors/code/package-lock.json

- name: Update build environment
run: |
sudo apt-get update
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# Development version

# 0.8.1

- Added color to Air's terminal help. Disable by setting the environment variable `NO_COLOR=1` (#447, @etiennebacher).

- Fixed an issue with Unicode elements and table alignment (#449).
Expand Down
9 changes: 8 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,14 @@ If you have any questions about the process, refer to [Zed's update guide](https

This does not install the CLI, but instead builds it to `target/debug/air` (or `target/debug/air.exe` on Windows).

- Install the development version of the VS Code or Positron extension:
- Install/activate the coordinated version of Node:

```sh
(cd editors/code && nvm use)
```

- Install the development version of the VS Code or Positron extension.
From the root:

``` bash
# Install for Positron
Expand Down
169 changes: 114 additions & 55 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ syn = "2.0.59"
tempfile = "3.9.0"
tests_macros = { path = "./crates/tests_macros" }
thiserror = "2.0.5"
tokio = "1.41.1"
tokio = "1.43.1"
tokio-util = "0.7.12"
toml = "0.8.19"
# For https://github.com/ebkalderon/tower-lsp/pull/428
tower-lsp = { branch = "bugfix/patches", git = "https://github.com/lionel-/tower-lsp" }
tracing = { version = "0.1.40", default-features = false, features = ["std"] }
tracing-subscriber = "0.3.19"
tracing-subscriber = "0.3.20"
tree-sitter = "0.24.7"
tree-sitter-r = { git = "https://github.com/r-lib/tree-sitter-r", rev = "daa26a2ff0d9546e9125c7d8bcec046027f02070" }
url = "2.5.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/air/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "air"
version = "0.8.0"
version = "0.8.1"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
Loading
Loading