-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* uptick: 0.10.0 * docs: fix changelog * bump lockfile * match clap * add/update schema * add note
- Loading branch information
1 parent
a6e1ea3
commit 8afae3f
Showing
10 changed files
with
1,471 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,18 @@ | ||
# Config Schema | ||
# Config JSON Schema | ||
|
||
## Usage | ||
## Generation | ||
|
||
## Development | ||
These are automatically generated from code using [`schemars`](https://github.com/GREsau/schemars). They're locked | ||
behind a feature flag to avoid building unnecessary code for release builds, and you can generate them like so: | ||
|
||
### How to add a new version | ||
```bash | ||
cargo run --features="generate_schema" -- --generate_schema > schema/nightly/bottom.json | ||
``` | ||
|
||
## Publication | ||
|
||
To publish these schemas, cut a new version by copying `nightly` to a new folder with a version number matching bottom's | ||
(e.g. v0.10 if bottom is on v0.10.x bottom). Then, make a PR to [schemastore](https://github.com/SchemaStore/schemastore) | ||
updating the catalog. | ||
|
||
For more info, see the schemastore repo. An example PR can be found [here](https://github.com/SchemaStore/schemastore/pull/3571). |
Oops, something went wrong.