From b7003beb0db0d9af72c02cb75e146586f6c4649c Mon Sep 17 00:00:00 2001 From: Zachary Newman Date: Mon, 22 Sep 2014 20:37:45 -0400 Subject: [PATCH] doc: update references to current stable branch The contribution guidelines in CONTRIBUTING.md referred to v0.10 as the current stable branch, rather than v1.x. --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 28a32baa..ea4be395 100644 --- a/CONTRIBUTING.md +++ b/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 ```