Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release air 1.0.1 and air-vscode 1.0.2 #184

Closed
wants to merge 1 commit into from
Closed
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
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 = "1.0.0"
version = "1.0.1"
publish = true
authors.workspace = true
categories.workspace = true
Expand Down
10 changes: 6 additions & 4 deletions docs-old/release.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CLI

The release process of the air cli has some manual steps. One complication is that for each release of the CLI binary, we create a new release of the extension as this is our primary way of distributing Air.
The release process of the air cli has some manual steps. One complication is that for each release of the CLI binary, we create a new release of the extension as this is our primary way of distributing Air. The version numbers between the CLI binary and the extension are not required to be the same.

When you want to cut a release:

Expand All @@ -14,7 +14,7 @@ When you want to cut a release:

- In `editors/code/package.json`, bump the minor version to the next even number for standard releases, or to the next odd number for odd releases.

- Do a PR and merge the release branch.
- Open a PR with these changes.

- Manually run the [release workflow](https://github.com/posit-dev/air/actions/workflows/release.yml)

Expand All @@ -32,6 +32,8 @@ When you want to cut a release:

- Manually run the [extension release workflow](https://github.com/posit-dev/air/actions/workflows/release-vscode.yml)

It runs on `workflow_dispatch`, and automatically pulls in the latest release binary of Air from the binary release workflow above.
- It runs on `workflow_dispatch`, and automatically pulls in the latest release binary of Air from the binary release workflow above.

There is no need to bump to an intermediate "dev version" after a release.
- Merge the release branch

- There is no need to bump to an intermediate "dev version" after a 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": "1.0.1",
"version": "1.0.2",
"publisher": "Posit",
"license": "MIT",
"homepage": "https://posit-dev.github.io/air",
Expand Down
Loading