-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions.example.json5
More file actions
23 lines (23 loc) · 1.13 KB
/
versions.example.json5
File metadata and controls
23 lines (23 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
// Map of each latest version according to phase (ex: *, alpha, beta, release-canadate, release).
"latest": {
"*": "0.0.0-alpha",
"alpha": "0.0.0-alpha"
},
// A list of phases that have been entered or passed (ex: alpha, beta, release-canadate, release).
"existing-phases": [
"alpha"
],
// Map of each sem-ver compilent version
"versions": {
"0.0.0-alpha": {
"epoch": 1754019066, // Unix epoch of when this was released
"date": "2025/08/01T03:31:06", // The date of release formatted as {YYYY}{MM}{DD}T{HH}:{MM}:{SS} using the timezone UTC+00:00 and 24 hour time.
"id": "0.0.0-alpha", // Semver complient version id
"phase": "alpha", // phase of this release (ex: alpha, beta, release-canadate, release)
"maven-jitpack": "com.github.PuzzlesHQ:puzzle-loader-core:0.0.0-alpha", // (optional) Maven location on the jitpack.io maven
"maven-central": "dev.puzzleshq:puzzle-loader-core:0.0.0-alpha", // (optional) Maven location on maven-central
"dependencies": "https://github.com/PuzzlesHQ/puzzle-loader-core/releases/download/0.0.0-alpha/dependencies.json" // (optional) Url pointing to the dependencies.json
}
}
}