aboutsummaryrefslogtreecommitdiff
path: root/deps/uv/CONTRIBUTING.md
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/CONTRIBUTING.md')
-rw-r--r--deps/uv/CONTRIBUTING.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/uv/CONTRIBUTING.md b/deps/uv/CONTRIBUTING.md
index 28a32baaea..ea4be395ed 100644
--- a/deps/uv/CONTRIBUTING.md
+++ b/deps/uv/CONTRIBUTING.md
@@ -37,10 +37,10 @@ Okay, so you have decided on the proper branch. Create a feature branch
and start hacking:
```
-$ git checkout -b my-feature-branch -t origin/v0.10
+$ git checkout -b my-feature-branch -t origin/v1.x
```
-(Where v0.10 is the latest stable branch as of this writing.)
+(Where v1.x is the latest stable branch as of this writing.)
### CODE
@@ -131,7 +131,7 @@ Use `git rebase` (not `git merge`) to sync your work from time to time.
```
$ git fetch upstream
-$ git rebase upstream/v0.10 # or upstream/master
+$ git rebase upstream/v1.x # or upstream/master
```