Compare commits
8 Commits
dead-code-
...
0.8.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7a28ff5607 | ||
|
|
7e0d70a314 | ||
|
|
a364be3674 | ||
|
|
90ba019534 | ||
|
|
5bc2955997 | ||
|
|
937a54ae4a | ||
|
|
20cb2d80c6 | ||
|
|
13aeaf142e |
18
NEWS
18
NEWS
@@ -1,4 +1,14 @@
|
||||
Version 0.8 (April 11, 2005)
|
||||
Release 0.8.1 (April 13, 2005)
|
||||
|
||||
This is a bug fix release.
|
||||
|
||||
* Patch downloading was broken.
|
||||
|
||||
* The garbage collector would not delete paths that had references
|
||||
from invalid (but substitutable) paths.
|
||||
|
||||
|
||||
Release 0.8 (April 11, 2005)
|
||||
|
||||
NOTE: the hashing scheme in Nix 0.8 changed (as detailed below). As a
|
||||
result, `nix-pull' manifests and channels built for Nix 0.7 and below
|
||||
@@ -162,7 +172,7 @@ Nix 0.8 has the following improvements:
|
||||
* Manual updates.
|
||||
|
||||
|
||||
Version 0.7 (January 12, 2005)
|
||||
Release 0.7 (January 12, 2005)
|
||||
|
||||
* Binary patching. When upgrading components using pre-built binaries
|
||||
(through nix-pull / nix-channel), Nix can automatically download and
|
||||
@@ -184,7 +194,7 @@ Version 0.7 (January 12, 2005)
|
||||
dependencies are revealed.
|
||||
|
||||
|
||||
Version 0.6 (November 14, 2004)
|
||||
Release 0.6 (November 14, 2004)
|
||||
|
||||
Major changes include the following:
|
||||
|
||||
@@ -250,6 +260,6 @@ Major changes include the following:
|
||||
* Many bug fixes.
|
||||
|
||||
|
||||
Version 0.5 and earlier
|
||||
Release 0.5 and earlier
|
||||
|
||||
Please refer to the Subversion commit log messages.
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
AC_INIT(nix, "0.9")
|
||||
AC_INIT(nix, "0.8.1")
|
||||
AC_CONFIG_SRCDIR(README)
|
||||
AC_CONFIG_AUX_DIR(config)
|
||||
AM_INIT_AUTOMAKE
|
||||
|
||||
# Change to `1' to produce a `stable' release (i.e., the `preREVISION'
|
||||
# suffix is not added).
|
||||
STABLE=0
|
||||
STABLE=1
|
||||
|
||||
# Put the revision number in the version.
|
||||
if test "$STABLE" != "1"; then
|
||||
|
||||
@@ -237,10 +237,10 @@ foreach my $p (keys %dstOutPaths) {
|
||||
$ratio = 1 / $ratio if $ratio < 1;
|
||||
print " USE $srcUses $dstUses $ratio $q\n";
|
||||
|
||||
# if ($ratio >= 2) {
|
||||
# print " SKIPPING $q due to use ratio $ratio ($srcUses $dstUses)\n";
|
||||
# next;
|
||||
# }
|
||||
if ($ratio >= 2) {
|
||||
print " SKIPPING $q due to use ratio $ratio ($srcUses $dstUses)\n";
|
||||
next;
|
||||
}
|
||||
|
||||
# If there are multiple matching names, include the ones
|
||||
# with the closest version numbers.
|
||||
|
||||
Reference in New Issue
Block a user