Przeglądaj źródła

Set version to '7.0.0'

Ian Griffiths 2 miesięcy temu
rodzic
commit
b1b81fbfe0
1 zmienionych plików z 10 dodań i 8 usunięć
  1. 10 8
      Ix.NET/Source/version.json

+ 10 - 8
Ix.NET/Source/version.json

@@ -1,11 +1,13 @@
 {
-  "version": "7.0.0-preview.{height}",
+  "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
+  "version": "7.0",
+  "nuGetPackageVersion": {
+    "semVer": 2.0
+  },
   "publicReleaseRefSpec": [
-    "^refs/heads/main$", // we release out of main
-    "^refs/heads/rel/v\\d+\\.\\d+", // we also release branches starting with vN.N
-    "^refs/heads/rel/ix-v\\d+\\.\\d+" // we also release branches starting with vN.N
+    "^refs/heads/main$",
+    "^refs/heads/rel/v\\d+\\.\\d+",
+    "^refs/heads/rel/ix-v\\d+\\.\\d+"
   ],
-  "nugetPackageVersion":{
-    "semVer": 2
-  }
-}
+  "versionHeightOffset": -1 // For reasons I continue not to understand, without this nbgv makes the first version 7.0.1 instead of 7.0.0
+}