Skip to content

Commit ecd36d9

Browse files
authored
fix(schemas): update old org URLs to CodingWithCalvin (#182)
1 parent a05ac0d commit ecd36d9

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.dtvem/runtimes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/dtvem/dtvem/main/schemas/runtimes.schema.json",
2+
"$schema": "https://raw.githubusercontent.com/CodingWithCalvin/dtvem.cli/main/schemas/runtimes.schema.json",
33
"node": "22.0.0",
44
"python": "3.8.9",
55
"ruby": "3.3.9"

schemas/manifest.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://raw.githubusercontent.com/dtvem/dtvem/main/schemas/manifest.schema.json",
3+
"$id": "https://raw.githubusercontent.com/CodingWithCalvin/dtvem.cli/main/schemas/manifest.schema.json",
44
"title": "dtvem Runtime Manifest",
55
"description": "Manifest file containing available versions and download URLs for a runtime",
66
"type": "object",

schemas/runtimes.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://raw.githubusercontent.com/dtvem/dtvem/main/schemas/runtimes.schema.json",
3+
"$id": "https://raw.githubusercontent.com/CodingWithCalvin/dtvem.cli/main/schemas/runtimes.schema.json",
44
"title": "dtvem Runtimes Configuration",
55
"description": "Configuration file for dtvem (Development Tool Virtual Environment Manager) to specify runtime versions for a project",
66
"type": "object",

src/internal/config/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
type RuntimesConfig map[string]string
1313

1414
// SchemaURL is the URL to the runtimes.json schema
15-
const SchemaURL = "https://raw.githubusercontent.com/dtvem/dtvem/main/schemas/runtimes.schema.json"
15+
const SchemaURL = "https://raw.githubusercontent.com/CodingWithCalvin/dtvem.cli/main/schemas/runtimes.schema.json"
1616

1717
// ResolveVersion finds the version to use for a runtime
1818
// Priority: local dtvem.config.json file (walking up directory tree) > global config

0 commit comments

Comments
 (0)