Skip to content

Commit

Permalink
Release Air 0.4.0 (#251)
Browse files Browse the repository at this point in the history
* Polish changelog

* Bump versions
  • Loading branch information
lionel- authored Feb 21, 2025
1 parent bdc2a88 commit 1eae534
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

# Development version


# 0.4.0

- Parenthesized expressions now tightly hug (#248).

- We now allow up to 2 lines between top-level elements of a file. This makes it possible to separate long scripts into visually distinct sections (#40).
Expand All @@ -27,8 +30,7 @@

- Added support for special "skip" comments.

Use `# fmt: skip` to avoid formatting the following node and all of its
children. In this case, the `tribble()` call and all of its arguments (#52).
Use `# fmt: skip` to avoid formatting the following node and all of its children. In this case, the `tribble()` call and all of its arguments (#52).

```r
# fmt: skip
Expand All @@ -38,8 +40,8 @@
)
```

Use `# fmt: skip file` to avoid formatting an entire file. This comment must
appear at the top of the file before any non-comment R code (#219).
Use `# fmt: skip file` to avoid formatting an entire file. This comment must appear at the top of the file before any non-comment R code (#219).


# 0.3.0

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

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.3.0"
version = "0.4.0"
publish = true
authors.workspace = true
categories.workspace = true
Expand Down
8 changes: 8 additions & 0 deletions editors/code/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,19 @@

- Regarding minor versions (the second number), odd numbers indicate a pre-release of the extension. Even numbers are for public-facing releases.


## Development version


## 0.6.0

- [Air 0.4.0](https://github.com/posit-dev/air/blob/main/CHANGELOG.md) is now bundled with the extension.

- New `air.executablePath` configuration option for specifying a fixed path to an air executable. You must also set `air.executableStrategy` to `"path"` for this to have any affect. This is mostly useful for debug builds of air (#243).

- `air.executableLocation` has been renamed to `air.executableStrategy`.


## 0.4.0

- [Air 0.3.0](https://github.com/posit-dev/air/blob/main/CHANGELOG.md) is now bundled with the extension.
Expand All @@ -20,6 +27,7 @@

- The extension now works properly for Intel macOS (#194).


## 0.2.0

- Initial release
2 changes: 1 addition & 1 deletion editors/code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "air-vscode",
"displayName": "Air - R Language Support",
"description": "R formatter and language server",
"version": "0.4.0",
"version": "0.6.0",
"publisher": "Posit",
"license": "MIT",
"homepage": "https://posit-dev.github.io/air",
Expand Down

0 comments on commit 1eae534

Please sign in to comment.