Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Commit

Permalink
release: 12.1.3 (#4544)
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico authored May 30, 2023
1 parent 039b6ab commit 55e1613
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 6 deletions.
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

## [Unreleased]

### CLI
### Configuration
### Editors
### Formatter
### Linter
### Parser
### VSCode
### JavaScript APIs

## 12.1.3

### CLI

#### Other changes
Expand All @@ -16,22 +27,18 @@
- Fix an issue where all the `nursery` were enabled when the `"nursery": {}` object
was defined [#4479](https://github.com/rome/tools/issues/4479)

### Editors
### Formatter

#### Other changes

- Revert [#4359](https://github.com/rome/tools/issues/4359)

### Linter
### Parser

#### Other changes

- Revert [#4359](https://github.com/rome/tools/issues/4359)

### VSCode
### JavaScript APIs

## 12.1.2

Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publisher": "rome",
"displayName": "Rome",
"description": "Rome LSP VS Code Extension",
"version": "0.24.2",
"version": "0.24.3",
"icon": "icon.png",
"activationEvents": [
"onLanguage:javascript",
Expand Down
2 changes: 1 addition & 1 deletion npm/rome/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rome",
"version": "12.1.2",
"version": "12.1.3",
"bin": "bin/rome",
"scripts": {
"postinstall": "node scripts/postinstall.js"
Expand Down
18 changes: 18 additions & 0 deletions website/src/pages/schemas/12.1.3/schema.json.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Run `ROME_VERSION=<version number> cargo codegen-website
// to generate a new schema
import { readFileSync } from "fs";
import { join, resolve } from "path";

export function get() {
const schemaPath = resolve(
join("..", "npm", "rome", "configuration_schema.json"),
);
const schema = readFileSync(schemaPath, "utf8");

return new Response(schema, {
status: 200,
headers: {
"content-type": "application/json",
},
});
}

0 comments on commit 55e1613

Please sign in to comment.