Skip to content

Commit

Permalink
release: v1.8.3 (#3302)
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Jun 27, 2024
1 parent f88b7b2 commit c28d597
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ New entries must be placed in a section entitled `Unreleased`.
Read
our [guidelines for writing a good changelog entry](https://github.com/biomejs/biome/blob/main/CONTRIBUTING.md#changelog).

## Unreleased
## v1.8.3 (2022-06-27)

### CLI

Expand All @@ -21,7 +21,7 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b

### Parser

#### New features
#### Bug fixes

- Implement [CSS unicode range](https://github.com/biomejs/biome/pull/3251). Contributed by @denbezrukov

Expand Down
2 changes: 1 addition & 1 deletion packages/@biomejs/biome/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biomejs/biome",
"version": "1.8.2",
"version": "1.8.3",
"bin": {
"biome": "bin/biome"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/@biomejs/js-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biomejs/js-api",
"version": "0.6.1",
"version": "0.6.2",
"description": "JavaScript APIs for the Biome package",
"scripts": {
"tsc": "tsc --noEmit",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ function generateLayerArray(layers: SortConfig["utilities"]) {

// Generate Variants using their name, already ordered by weight
function generateVariants(variants: SortConfig["variants"]) {
let output = `pub const VARIANT_CLASSES: [&str; ${variants.length}] = [\n`
let output = `pub const VARIANT_CLASSES: [&str; ${variants.length}] = [\n`;

for (const { name } of variants) {
output += `${INDENT}"${name}",\n`
output += `${INDENT}"${name}",\n`;
}
output += "];\n";
return output;
Expand Down

0 comments on commit c28d597

Please sign in to comment.