Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add semantic versioning warning #1614

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions docs/source/basic_concepts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,13 @@ version than ``1.0``.
.. note::
No special importance is given to specific characters or letters in Rez version numbers.
The terms ``alpha`` and ``beta`` for example have no special meaning. Similarly, the number of tokens in
a version number doesn't matter, you can have as many as you like. While you are encouraged to use
semantic versioning (see `<https://semver.org>`_), it is not enforced.
a version number doesn't matter, you can have as many as you like.

While you are encouraged to use semantic versioning (see `<https://semver.org>`_), it is not enforced. Please note
that if you are using semantic versioning, version ordering will NOT behave like described in the semantic versioning
2.0.0 spec.

Ex. foo-1.0.0 < foo-1.0.0-beta.1

.. _packages-concept:

Expand Down