#!/usr/bin/env python3 # Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. # Follows PEP-0440 version scheme guidelines # https://www.python.org/dev/peps/pep-0440/#version-scheme # # Examples: # 0.1.0.devN # Developmental release # 0.1.0aN # Alpha release # 0.1.0bN # Beta release # 0.1.0rcN # Release Candidate # 0.1.0 # Final release __version__ = "0.1.0b0"