mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:20:10 +01:00
Adds scripts/calculate_release_shas.py to print the versions, and updates tool versions. Consolidates target-determinator logic with the other tool logic. This is also intended to make it easier to add more tools.
20 lines
415 B
Python
Executable File
20 lines
415 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
"""Prints sha information for tracked tool releases."""
|
|
|
|
__copyright__ = """
|
|
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
|
|
"""
|
|
|
|
import scripts_utils
|
|
|
|
|
|
def main() -> None:
|
|
scripts_utils.calculate_release_shas()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|