Skip to content

Commit

Permalink
Rename 1.12 -> 2.0
Browse files Browse the repository at this point in the history
Following discussion with Shea and Graham. It's a big enough change
from the last release. Also, from a semver perspective, 2.0 makes more
sense because we did remove some interfaces (like nix-pull/nix-push).
  • Loading branch information
edolstra committed Jan 31, 2018
1 parent 6fa6902 commit c287d73
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE.md
Expand Up @@ -14,7 +14,7 @@ Examples of _Nix_ issues:
- Nix segfaults when I run `nix-build -A blahblah`
- The Nix language needs a new builtin: `builtins.foobar`
- Regression in the behavior of `nix-env` in Nix 1.12
- Regression in the behavior of `nix-env` in Nix 2.0
Examples of _nixpkgs_ issues:
Expand All @@ -24,4 +24,4 @@ Examples of _nixpkgs_ issues:
Chances are if you're a newcomer to the Nix world, you'll probably want the [nixpkgs tracker](https://github.com/NixOS/nixpkgs/issues). It also gets a lot more eyeball traffic so you'll probably get a response a lot more quickly.
-->
-->
2 changes: 1 addition & 1 deletion doc/manual/release-notes/release-notes.xml
Expand Up @@ -12,7 +12,7 @@
</partintro>
-->

<xi:include href="rl-1.12.xml" />
<xi:include href="rl-2.0.xml" />
<xi:include href="rl-1.11.10.xml" />
<xi:include href="rl-1.11.xml" />
<xi:include href="rl-1.10.xml" />
Expand Down
Expand Up @@ -2,9 +2,9 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
version="5.0"
xml:id="ssec-relnotes-1.12">
xml:id="ssec-relnotes-2.0">

<title>Release 1.12 (TBA)</title>
<title>Release 2.0 (2018-02-??)</title>

This comment has been minimized.

Copy link
@periklis

periklis Feb 1, 2018

🎉


<para>This release has the following new features:</para>

Expand Down
2 changes: 1 addition & 1 deletion src/libstore/local-store.hh
Expand Up @@ -19,7 +19,7 @@ namespace nix {
/* Nix store and database schema version. Version 1 (or 0) was Nix <=
0.7. Version 2 was Nix 0.8 and 0.9. Version 3 is Nix 0.10.
Version 4 is Nix 0.11. Version 5 is Nix 0.12-0.16. Version 6 is
Nix 1.0. Version 7 is Nix 1.3. Version 10 is 1.12. */
Nix 1.0. Version 7 is Nix 1.3. Version 10 is 2.0. */
const int nixSchemaVersion = 10;


Expand Down
2 changes: 1 addition & 1 deletion version
@@ -1 +1 @@
1.12
2.0

2 comments on commit c287d73

@AmineChikhaoui
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎉

@vcunat
Copy link
Member

@vcunat vcunat commented on c287d73 Feb 1, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So, no incompatible language changes are planned ATM?

Please sign in to comment.