Skip to content

Commit 329e983

Browse files
committed
Update to 0.9.0
1 parent eac7ff6 commit 329e983

8 files changed

Lines changed: 14 additions & 8 deletions

File tree

CHANGELOG.md

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

33
# Development version
44

5+
# 0.9.0
6+
57
- New `--stdin-file-path <path>` to read from stdin. Read more about this on [the website](https://posit-dev.github.io/air/cli.html#stdin) (#471).
68

79
- Air's behavior relating to directly supplied files and the `exclude` / `default-exclude` options has changed to be safer by default. Previously, `air format cpp11.R` would format `cpp11.R`, even though it was part of the set of `default-exclude`s, because we assumed that a direct request from a user like this could override these rules. However, tools such as pre-commit or IDEs that format via stdin will blindly call `air format` on any file that changes and have no knowledge of whether that file should be excluded or not. For this reason, we now exclude files that match `exclude` or `default-exclude` patterns even if they are directly supplied on the command line.

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ The very first time you install Air, for the `PATH` modifications to be applied
2626
For a specific version:
2727

2828
``` bash
29-
curl -LsSf https://github.com/posit-dev/air/releases/download/0.1.1/air-installer.sh | sh
29+
curl -LsSf https://github.com/posit-dev/air/releases/download/0.9.0/air-installer.sh | sh
3030
```
3131

3232
``` powershell
33-
powershell -ExecutionPolicy Bypass -c "irm https://github.com/posit-dev/air/releases/download/0.1.1/air-installer.ps1 | iex"
33+
powershell -ExecutionPolicy Bypass -c "irm https://github.com/posit-dev/air/releases/download/0.9.0/air-installer.ps1 | iex"
3434
```
3535

3636
If you're on macOS and are familiar with [Homebrew](https://brew.sh/), you can alternatively install the [air formula](https://formulae.brew.sh/formula/air) with:

crates/air/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "air"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true

docs/cli.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ The very first time you install Air, for the `PATH` modifications to be applied
2828
For a specific version:
2929

3030
``` bash
31-
curl -LsSf https://github.com/posit-dev/air/releases/download/0.1.1/air-installer.sh | sh
31+
curl -LsSf https://github.com/posit-dev/air/releases/download/0.9.0/air-installer.sh | sh
3232
```
3333

3434
``` powershell
35-
powershell -ExecutionPolicy Bypass -c "irm https://github.com/posit-dev/air/releases/download/0.1.1/air-installer.ps1 | iex"
35+
powershell -ExecutionPolicy Bypass -c "irm https://github.com/posit-dev/air/releases/download/0.9.0/air-installer.ps1 | iex"
3636
```
3737

3838
If you're on macOS and are familiar with [Homebrew](https://brew.sh/), you can alternatively install the [air formula](https://formulae.brew.sh/formula/air) with:

editors/code/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
## Development version
99

10+
## 0.24.0
11+
12+
- [Air 0.9.0](https://github.com/posit-dev/air/blob/main/CHANGELOG.md) is now bundled with the extension.
13+
1014

1115
## 0.22.0
1216

editors/code/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "air-vscode",
33
"displayName": "Air - R Language Support",
44
"description": "R formatter and language server",
5-
"version": "0.22.0",
5+
"version": "0.24.0",
66
"publisher": "Posit",
77
"license": "MIT",
88
"homepage": "https://posit-dev.github.io/air",

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "air-formatter"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
description = "An R formatter, written in Rust."
55
readme = "README.md"
66
requires-python = ">=3.8"

0 commit comments

Comments
 (0)