UnofficialCrusaderPatch / UCP3-GUI

Dev work on the UCP3 gui
GNU Affero General Public License v3.0
2 stars 0 forks source link

Version management: update dependencies to new style in config.yml and other files: definition.yml #164

Closed gynt closed 9 months ago

gynt commented 9 months ago

SemVer is the way to go.

old style

load-order:
- a == 0.1.0
- b ^0.2.0

new style

load-order:
- a: "= 0.1.0"
- b: "^0.2.0"
TheRedDaemon commented 9 months ago

Do I need to adjust the module dependencies again, btw? Or is ">= 1.0.0" valid semver?

gynt commented 9 months ago

That is valid semver, but it will upgrade to any next version whether major or minor https://docs.npmjs.com/cli/v6/using-npm/semver#ranges

TheRedDaemon commented 9 months ago

Hm, that should be ok for the release... Maybe I adjust the aiSwapper deps, should I fix the small display issue Krari noticed. But the more important part is, that it does not break something.

gynt commented 9 months ago

I am working in a PR on it to make it all work, #173