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