@markuplint/ml-spec 5.0.0-alpha.3 → 5.0.0-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [5.0.0-rc.0](https://github.com/markuplint/markuplint/compare/v5.0.0-alpha.3...v5.0.0-rc.0) (2026-03-12)
7
+
8
+ **Note:** Version bump only for package @markuplint/ml-spec
9
+
6
10
  # [5.0.0-alpha.3](https://github.com/markuplint/markuplint/compare/v5.0.0-alpha.2...v5.0.0-alpha.3) (2026-02-26)
7
11
 
8
12
  **Note:** Version bump only for package @markuplint/ml-spec
@@ -236,7 +236,7 @@ type ARIAAttributeValue =
236
236
  type ARIAVersion = '1.1' | '1.2' | '1.3';
237
237
  ```
238
238
 
239
- 推奨デフォルトバージョンは `'1.2'` です(`src/utils/aria-version.ts` の `ARIA_RECOMMENDED_VERSION` として定義)。
239
+ 推奨デフォルトバージョンは `'1.3'` です(`src/utils/aria-version.ts` の `ARIA_RECOMMENDED_VERSION` として定義)。
240
240
 
241
241
  ### `ComputedRole`
242
242
 
@@ -236,7 +236,7 @@ A union type of supported ARIA specification version strings, derived from the `
236
236
  type ARIAVersion = '1.1' | '1.2' | '1.3';
237
237
  ```
238
238
 
239
- The recommended default version is `'1.2'` (defined as `ARIA_RECOMMENDED_VERSION` in `src/utils/aria-version.ts`).
239
+ The recommended default version is `'1.3'` (defined as `ARIA_RECOMMENDED_VERSION` in `src/utils/aria-version.ts`).
240
240
 
241
241
  ### `ComputedRole`
242
242
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/ml-spec",
3
- "version": "5.0.0-alpha.3",
3
+ "version": "5.0.0-rc.0",
4
4
  "description": "Types and schema that specs of the Markup languages for markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -34,14 +34,14 @@
34
34
  "schema:prettier": "npx prettier --write \"./schemas/*.json\" \"./src/types/*.ts\" --log-level warn"
35
35
  },
36
36
  "dependencies": {
37
- "@markuplint/ml-ast": "5.0.0-alpha.3",
38
- "@markuplint/types": "5.0.0-alpha.3",
37
+ "@markuplint/ml-ast": "5.0.0-rc.0",
38
+ "@markuplint/types": "5.0.0-rc.0",
39
39
  "is-plain-object": "5.0.0",
40
40
  "type-fest": "5.4.4"
41
41
  },
42
42
  "devDependencies": {
43
- "@markuplint/test-tools": "5.0.0-alpha.3",
43
+ "@markuplint/test-tools": "5.0.0-rc.0",
44
44
  "json-schema-to-typescript": "15.0.4"
45
45
  },
46
- "gitHead": "2fbdf26daa3d021ac628ccc2f59f0eeae6ddd53d"
46
+ "gitHead": "ebf4d7cfca0c259aead3b292c6b8a202db4cd802"
47
47
  }