summary refs log tree commit diff
path: root/nixos/doc/manual/development
diff options
context:
space:
mode:
authorChristine Koppelt <cko@users.noreply.github.com>2017-03-25 20:14:04 +0100
committerChristine Koppelt <cko@users.noreply.github.com>2017-03-25 20:14:04 +0100
commite5c927cb8de8a78cd2ed4ad1bf41ccbfef1dcfce (patch)
treef77782b4c89dfaded2d5faa4eb30c3b63580eafe /nixos/doc/manual/development
parent65593e64c480493555ae21050a422e4c7ff9c7ea (diff)
downloadnixlib-e5c927cb8de8a78cd2ed4ad1bf41ccbfef1dcfce.tar
nixlib-e5c927cb8de8a78cd2ed4ad1bf41ccbfef1dcfce.tar.gz
nixlib-e5c927cb8de8a78cd2ed4ad1bf41ccbfef1dcfce.tar.bz2
nixlib-e5c927cb8de8a78cd2ed4ad1bf41ccbfef1dcfce.tar.lz
nixlib-e5c927cb8de8a78cd2ed4ad1bf41ccbfef1dcfce.tar.xz
nixlib-e5c927cb8de8a78cd2ed4ad1bf41ccbfef1dcfce.tar.zst
nixlib-e5c927cb8de8a78cd2ed4ad1bf41ccbfef1dcfce.zip
NixOS Manual: Update version numbers
Diffstat (limited to 'nixos/doc/manual/development')
-rw-r--r--nixos/doc/manual/development/sources.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/nixos/doc/manual/development/sources.xml b/nixos/doc/manual/development/sources.xml
index 7cd5ce0002c2..0b2528e9a779 100644
--- a/nixos/doc/manual/development/sources.xml
+++ b/nixos/doc/manual/development/sources.xml
@@ -27,8 +27,8 @@ a subdirectory of the Nixpkgs repository.) The remote
 <literal>channels</literal> refers to a read-only repository that
 tracks the Nixpkgs/NixOS channels (see <xref linkend="sec-upgrading"/>
 for more information about channels). Thus, the Git branch
-<literal>channels/nixos-14.12</literal> will contain the latest built
-and tested version available in the <literal>nixos-14.12</literal>
+<literal>channels/nixos-17.03</literal> will contain the latest built
+and tested version available in the <literal>nixos-17.03</literal>
 channel.</para>
 
 <para>It’s often inconvenient to develop directly on the master
@@ -39,9 +39,9 @@ branch based on your current NixOS version:
 
 <screen>
 $ nixos-version
-14.04.273.ea1952b (Baboon)
+17.09pre104379.6e0b727 (Hummingbird)
 
-$ git checkout -b local ea1952b
+$ git checkout -b local e3938c8
 </screen>
 
 Or, to base your local branch on the latest version available in a
@@ -49,17 +49,17 @@ NixOS channel:
 
 <screen>
 $ git remote update channels
-$ git checkout -b local channels/nixos-14.12
+$ git checkout -b local channels/nixos-17.03
 </screen>
 
-(Replace <literal>nixos-14.12</literal> with the name of the channel
+(Replace <literal>nixos-17.03</literal> with the name of the channel
 you want to use.) You can use <command>git merge</command> or
 <command>git rebase</command> to keep your local branch in sync with
 the channel, e.g.
 
 <screen>
 $ git remote update channels
-$ git merge channels/nixos-14.12
+$ git merge channels/nixos-17.03
 </screen>
 
 You can use <command>git cherry-pick</command> to copy commits from