Skip to content

Commit 6071ae9

Browse files
[RELEASE ONLY] Update viable/strict in the docs to point to release/1.0 (#14565)
1 parent 88e0855 commit 6071ae9

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ for their help in the PR comments.
327327
### Continuous Integration
328328
See https://hud.pytorch.org/hud/pytorch/executorch/main for the current state of
329329
the CI (continuous integration) jobs. If `main` is broken, consider rebasing
330-
your PR onto the `viable/strict` branch, which points to the most recent
330+
your PR onto the `release/1.0` branch, which points to the most recent
331331
all-green commit.
332332

333333
 

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ To build the documentation locally:
4040
1. Clone the ExecuTorch repo to your machine.
4141

4242
```bash
43-
git clone -b viable/strict https://github.com/pytorch/executorch.git && cd executorch
43+
git clone -b release/1.0 https://github.com/pytorch/executorch.git && cd executorch
4444
```
4545

4646
1. If you don't have it already, start either a Python virtual envitonment:

docs/source/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ ExecuTorch provides C++ APIs, which can be used to target embedded or mobile dev
168168
CMake is the preferred build system for the ExecuTorch C++ runtime. To use with CMake, clone the ExecuTorch repository as a subdirectory of your project, and use CMake's `add_subdirectory("executorch")` to include the dependency. The `executorch` target, as well as kernel and backend targets will be made available to link against. The runtime can also be built standalone to support diverse toolchains. See [Using ExecuTorch with C++](using-executorch-cpp.md) for a detailed description of build integration, targets, and cross compilation.
169169

170170
```
171-
git clone -b viable/strict https://github.com/pytorch/executorch.git
171+
git clone -b release/1.0 https://github.com/pytorch/executorch.git
172172
```
173173
```python
174174
# CMakeLists.txt

docs/source/using-executorch-building-from-source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ portability details.
3838
## Environment Setup
3939
Clone the ExecuTorch repository from GitHub and create a conda environment as follows. Venv can be used in place on conda.
4040
```bash
41-
git clone -b viable/strict https://github.com/pytorch/executorch.git
41+
git clone -b release/1.0 https://github.com/pytorch/executorch.git
4242
cd executorch
4343
conda create -yn executorch python=3.10.0
4444
conda activate executorch

docs/source/using-executorch-ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ xcode-select --install
9898
2. Clone ExecuTorch:
9999

100100
```bash
101-
git clone -b viable/strict https://github.com/pytorch/executorch.git --depth 1 --recurse-submodules --shallow-submodules && cd executorch
101+
git clone -b release/1.0 https://github.com/pytorch/executorch.git --depth 1 --recurse-submodules --shallow-submodules && cd executorch
102102
```
103103

104104
3. Set up [Python](https://www.python.org/downloads/macos/) 3.10+ and activate a virtual environment:

extension/benchmark/apple/Benchmark/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ It provides a flexible framework for dynamically generating and running performa
2424
To get started, clone the ExecuTorch repository and cd into the source code directory:
2525

2626
```bash
27-
git clone -b viable/strict https://github.com/pytorch/executorch.git --depth 1 --recurse-submodules --shallow-submodules && cd executorch
27+
git clone -b release/1.0 https://github.com/pytorch/executorch.git --depth 1 --recurse-submodules --shallow-submodules && cd executorch
2828
```
2929

3030
This command performs a shallow clone to speed up the process.

0 commit comments

Comments
 (0)