version_base.bzl 862 B

12345678910111213141516171819202122
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. """The base version of the Carbon repository.
  5. Carbon's version is defined here for export to various layers
  6. where it is needed. This is not the currently *released* version, but the
  7. version under *active development*.
  8. The current active development version is 0.0.0 -- we haven't yet made enough
  9. progress towards our 0.1 milestone to meaningfully bump the version to that even
  10. to describe the development activity. We also never plan to make even a
  11. non-development pre-release of 0.0.0, only nightly development pre-releases are
  12. expected.
  13. For more details on Carbon's versioning, see:
  14. https://semver.org/
  15. TODO: Add Carbon-specific link.
  16. """
  17. version_base = "0.0.0"