Compare commits

...

7 Commits

Author SHA1 Message Date
Eelco Dolstra 7e0d70a314 * Mark as stable. 2005-04-13 09:27:23 +00:00
Eelco Dolstra a364be3674 2005-04-13 09:26:56 +00:00
Eelco Dolstra 90ba019534 * NEWS for 0.8.1. 2005-04-13 09:26:09 +00:00
Eelco Dolstra 5bc2955997 * And bump the version number. 2005-04-12 10:56:25 +00:00
Eelco Dolstra 937a54ae4a * Merge critical bug fixes from trunk (r2536, r2537). 2005-04-12 10:56:02 +00:00
Eelco Dolstra 20cb2d80c6 * Nix 0.8 maintenance branch. 2005-04-12 10:54:34 +00:00
Eelco Dolstra 13aeaf142e * Branch for 0.8 bug fix releases. 2005-04-12 10:53:24 +00:00
3 changed files with 20 additions and 10 deletions

18
NEWS
View File

@ -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.

View File

@ -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

View File

@ -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.