Summary: We deprecated this as part of the Yoga 2.0 release. The last version is still present as part of the release-v2.0 branch, and was still published, but we are not carrying the code forward. This removes it. Reviewed By: mdvacca Differential Revision: D47136781 fbshipit-source-id: ac60939efb2372db04e33ed26456bad2f3b5852b
37 lines
947 B
Python
Executable File
37 lines
947 B
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
import os
|
|
import re
|
|
import sys
|
|
|
|
os.chdir(os.path.dirname(__file__))
|
|
|
|
if len(sys.argv) != 2:
|
|
print("usage: ./set-version <version>", file=sys.stderr)
|
|
sys.exit(1)
|
|
|
|
version = sys.argv[1]
|
|
|
|
with open("gradle.properties", "r+") as f:
|
|
new_contents = re.sub(r"VERSION_NAME=.*", f"VERSION_NAME={version}", f.read())
|
|
f.seek(0)
|
|
f.write(new_contents)
|
|
|
|
|
|
with open("javascript/package.json", "r+") as f:
|
|
new_contents = re.sub(r'"version": ".*",', f'"version": "{version}",', f.read())
|
|
print(new_contents)
|
|
f.seek(0)
|
|
f.write(new_contents)
|
|
|
|
with open("Yoga.podspec", "r+") as f:
|
|
new_contents = re.sub(
|
|
r"spec\.version = '.*'", f"spec.version = '{version}'", f.read()
|
|
)
|
|
f.seek(0)
|
|
f.write(new_contents)
|