Skip to content

Commit cc6fcc7

Browse files
committed
Prepare release
1 parent 4e495a7 commit cc6fcc7

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
## 0.0.2025XXXX (unreleased)
1+
## 0.0.20251014 (2025-10-14)
22

33
### Added
44

5+
- Distribute a json schema for `crs-config.json` files (#92, @mbarbin).
56
- Added local dunolint invariants (#91, @mbarbin).
67

78
### Changed

doc/docs/reference/crs-actions-config/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Here's a complete working example showing all available configuration options:
1414
```json
1515
{
1616
// Enable editor validation and auto-completion (replace with your crs version).
17-
"$schema": "https://github.com/mbarbin/crs/releases/download/v1.2.3/crs-config.schema.json",
17+
"$schema": "https://github.com/mbarbin/crs/releases/download/0.0.20251014/crs-config.schema.json",
1818

1919
// Alice takes over CRs that are otherwise hard to assign.
2020
default_repo_owner: "alice",
@@ -97,7 +97,7 @@ Add a `$schema` field to your `.github/crs-config.json` that matches your instal
9797
<!-- $MDX skip -->
9898
```json
9999
{
100-
"$schema": "https://github.com/mbarbin/crs/releases/download/v1.2.3/crs-config.schema.json",
100+
"$schema": "https://github.com/mbarbin/crs/releases/download/0.0.20251014/crs-config.schema.json",
101101
"default_repo_owner": "alice",
102102
"user_mentions_allowlist": ["alice", "bob"]
103103
}

doc/docs/reference/crs-actions-config/complete-example.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
// Enable editor validation and auto-completion (replace with your crs version).
3-
"$schema": "https://github.com/mbarbin/crs/releases/download/v1.2.3/crs-config.schema.json",
3+
"$schema": "https://github.com/mbarbin/crs/releases/download/0.0.20251014/crs-config.schema.json",
44

55
// Alice takes over CRs that are otherwise hard to assign.
66
default_repo_owner: "alice",

schema/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The schema is distributed through two channels:
1313
1. **GitHub releases** (primary) - `.github/workflows/release-artifacts.yml` extracts the schema from the opam destdir and uploads it as a release artifact
1414
- Schema is retrieved from `$OPAM_DESTDIR/share/crs/schema/crs-config.schema.json`
1515
- Uploaded alongside platform-specific binaries
16-
- Accessed via versioned URLs like `https://github.com/mbarbin/crs/releases/download/v1.2.3/crs-config.schema.json`
16+
- Accessed via versioned URLs like `https://github.com/mbarbin/crs/releases/download/0.0.20251014/crs-config.schema.json`
1717
- This is the primary distribution mechanism that users reference in their configs
1818

1919
2. **Opam installation** (secondary, for offline use if needed) - `schema/dune` installs the file to `share_root` under `crs/schema/`

0 commit comments

Comments
 (0)