Skip to content

Commit 3208db6

Browse files
ci: release
1 parent 81ac4fe commit 3208db6

File tree

29 files changed

+64
-42
lines changed

29 files changed

+64
-42
lines changed

.changeset/pink-actors-think.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/use_readonly_class_properties_definition.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

packages/@biomejs/backend-jsonrpc/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @biomejs/backend-jsonrpc
22

3+
## 2.0.3
4+
35
## 2.0.2
46

57
## 2.0.1

packages/@biomejs/backend-jsonrpc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@biomejs/backend-jsonrpc",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"main": "dist/index.js",
55
"scripts": {
66
"test": "vitest",

packages/@biomejs/biome/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# @biomejs/biome
22

3+
## 2.0.3
4+
5+
### Patch Changes
6+
7+
- [#6439](https://github.com/biomejs/biome/pull/6439) [`7e4da4e`](https://github.com/biomejs/biome/commit/7e4da4edb811f9598e446c77fd26bc3802b6d3dd) Thanks [@ematipico](https://github.com/ematipico)! - Fixed an issue where the correct rights aren't added to the binary during publishing
8+
9+
- [#6297](https://github.com/biomejs/biome/pull/6297) [`cc4b8c9`](https://github.com/biomejs/biome/commit/cc4b8c90017f9c04eab393abc60b3f94a35e3cfa) Thanks [@vladimir-ivanov](https://github.com/vladimir-ivanov)! - Added a new lint `useReadonlyClassProperties` rule.
10+
This rule is a port of ESLint's [prefer-readonly](https://typescript-eslint.io/rules/prefer-readonly/) rule.
11+
12+
Example:
13+
14+
```ts
15+
class Example {
16+
// All properties below can be marked as readonly
17+
public constantValue = 42;
18+
protected initializedInConstructor: string;
19+
private privateField = true;
20+
21+
constructor(initializedInConstructor: string) {
22+
this.initializedInConstructor = initializedInConstructor;
23+
}
24+
}
25+
```
26+
327
## 2.0.2
428

529
### Patch Changes

packages/@biomejs/biome/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@biomejs/biome",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"bin": {
55
"biome": "bin/biome"
66
},

packages/@biomejs/cli-darwin-arm64/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @biomejs/cli-darwin-arm64
22

3+
## 2.0.3
4+
35
## 2.0.2
46

57
## 2.0.1

packages/@biomejs/cli-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@biomejs/cli-darwin-arm64",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"license": "MIT OR Apache-2.0",
55
"repository": {
66
"type": "git",

packages/@biomejs/cli-darwin-x64/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @biomejs/cli-darwin-x64
22

3+
## 2.0.3
4+
35
## 2.0.2
46

57
## 2.0.1

packages/@biomejs/cli-darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@biomejs/cli-darwin-x64",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"license": "MIT OR Apache-2.0",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)