We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b109d66 commit 4b8badfCopy full SHA for 4b8badf
README.md
@@ -100,4 +100,11 @@ boss install -g delphi-docker
100
boss install -g boss-ide
101
```
102
103
-###### For use yor project in boss create a tag with [semantic version](https://semver.org/).
+## Using [semantic versioning](https://semver.org/) to specify update types your package can accept
104
+
105
+You can specify which update types your package can accept from dependencies in your package’s boss.json file.
106
107
+For example, to specify acceptable version ranges up to 1.0.4, use the following syntax:
108
+ * Patch releases: 1.0 or 1.0.x or ~1.0.4
109
+ * Minor releases: 1 or 1.x or ^1.0.4
110
+ * Major releases: * or x
0 commit comments