forked from carbon-language/carbon-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version_base.bzl
22 lines (17 loc) · 862 Bytes
/
version_base.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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"