Skip to content

Commit 2e391f2

Browse files
authored
Feat/v1 (#66)
* add isCustomElement flag * feat: v1
1 parent 3f7b550 commit 2e391f2

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1717
<!-- ### Removed -->
1818
<!-- ### Fixed -->
1919

20+
## [1.0.0] - 2021-06-10
21+
22+
Initial release
23+
2024
## [0.1.0] - 2021-02-12
2125

2226
Initial pre-release

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
# custom-elements-manifest
22
A file format for describing custom elements.
33

4-
# Status
5-
6-
This schema is in a pre-release phase. We are gathering feedback from tool
7-
and web component authors. Please file [issues](https://github.com/webcomponents/custom-elements-manifest/issues) to give feedback.
8-
94
The schema is published as a [JSON Schema](https://json-schema.org/) file, in `schema.json`. The schema is written in TypeScript (see [schema.d.ts](https://github.com/webcomponents/custom-elements-manifest/blob/master/schema.d.ts)) and then compiled to JSON Schema.
105

116
# Usage
@@ -42,7 +37,7 @@ In order to allow tools to find npm packages with custom element manifests witho
4237
## Schema Versioning
4338

4439
The schema has a `schemaVersion` field in the top-level object to facilitate
45-
evolution of the schema. The schema follows [semver](https://semver.org/) versioning, the current schema version is `0.1.0`.
40+
evolution of the schema. The schema follows [semver](https://semver.org/) versioning, the current schema version is `1.0.0`.
4641

4742
This version will not always match the npm package version, as some changes to the npm package might not have changes to the schema. We will publish a list of schema versions and their associated npm versions and git tags.
4843

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "custom-elements-manifest",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "A file format for describing custom elements",
55
"main": "schema.json",
66
"scripts": {

0 commit comments

Comments
 (0)