@spade-lang/spade 0.9.0-dev.899bf3-f11480 → 0.9.0-dev940.733.899bf3-bc3d06
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,12 +23,15 @@ For more detail, see the documentation for [the JavaScript YoWASP runtime](https
|
|
|
23
23
|
Versioning
|
|
24
24
|
----------
|
|
25
25
|
|
|
26
|
-
The version of this package is derived from the upstream Spade package version
|
|
26
|
+
The version of this package is derived from the upstream Spade package version. The format is `X.Y.Z-dev-N1.N2.H1-H2` format
|
|
27
27
|
|
|
28
28
|
1. `X`: Spade major version
|
|
29
29
|
2. `Y`: Spade minor version
|
|
30
|
-
3. `Z`: Spade patch version
|
|
31
|
-
|
|
30
|
+
3. `Z`: Spade patch version
|
|
31
|
+
4. `N1`: The number of commits in the Spade repo when this was built
|
|
32
|
+
4. `N2`: The number of commits in this repo when this was built
|
|
33
|
+
3. `H1`: The commit hash which Spade was built from
|
|
34
|
+
4. `H2`: The commit hash of this repo
|
|
32
35
|
|
|
33
36
|
With this scheme, there is a direct correspondence between upstream versions and [SemVer][semver] NPM package versions.
|
|
34
37
|
|