From 3d77ee61d82e9c126e7a98a7d20a2578c1a227aa Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Mon, 5 Jan 2026 10:02:22 -0500 Subject: [PATCH] fix(schemas): update old org URLs to CodingWithCalvin Update schema URLs that were missed in the organization migration: - .dtvem/runtimes.json $schema URL - schemas/runtimes.schema.json $id - schemas/manifest.schema.json $id - src/internal/config/version.go SchemaURL constant --- .dtvem/runtimes.json | 2 +- schemas/manifest.schema.json | 2 +- schemas/runtimes.schema.json | 2 +- src/internal/config/version.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.dtvem/runtimes.json b/.dtvem/runtimes.json index 1714eac..2f0a2e4 100644 --- a/.dtvem/runtimes.json +++ b/.dtvem/runtimes.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/dtvem/dtvem/main/schemas/runtimes.schema.json", + "$schema": "https://raw.githubusercontent.com/CodingWithCalvin/dtvem.cli/main/schemas/runtimes.schema.json", "node": "22.0.0", "python": "3.8.9", "ruby": "3.3.9" diff --git a/schemas/manifest.schema.json b/schemas/manifest.schema.json index c7ce412..76c98d0 100644 --- a/schemas/manifest.schema.json +++ b/schemas/manifest.schema.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://raw.githubusercontent.com/dtvem/dtvem/main/schemas/manifest.schema.json", + "$id": "https://raw.githubusercontent.com/CodingWithCalvin/dtvem.cli/main/schemas/manifest.schema.json", "title": "dtvem Runtime Manifest", "description": "Manifest file containing available versions and download URLs for a runtime", "type": "object", diff --git a/schemas/runtimes.schema.json b/schemas/runtimes.schema.json index 69a724f..724862a 100644 --- a/schemas/runtimes.schema.json +++ b/schemas/runtimes.schema.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://raw.githubusercontent.com/dtvem/dtvem/main/schemas/runtimes.schema.json", + "$id": "https://raw.githubusercontent.com/CodingWithCalvin/dtvem.cli/main/schemas/runtimes.schema.json", "title": "dtvem Runtimes Configuration", "description": "Configuration file for dtvem (Development Tool Virtual Environment Manager) to specify runtime versions for a project", "type": "object", diff --git a/src/internal/config/version.go b/src/internal/config/version.go index c2a8c75..baea2ff 100644 --- a/src/internal/config/version.go +++ b/src/internal/config/version.go @@ -12,7 +12,7 @@ import ( type RuntimesConfig map[string]string // SchemaURL is the URL to the runtimes.json schema -const SchemaURL = "https://raw.githubusercontent.com/dtvem/dtvem/main/schemas/runtimes.schema.json" +const SchemaURL = "https://raw.githubusercontent.com/CodingWithCalvin/dtvem.cli/main/schemas/runtimes.schema.json" // ResolveVersion finds the version to use for a runtime // Priority: local dtvem.config.json file (walking up directory tree) > global config