diff options
-rw-r--r-- | Changelog | 27 | ||||
-rw-r--r-- | Changelog.full | 47 | ||||
-rw-r--r-- | Rules.mak | 2 | ||||
-rw-r--r-- | docs/uclibc.org/news.html | 24 |
4 files changed, 96 insertions, 4 deletions
@@ -1,4 +1,27 @@ -0.9.25 15 December 2003 +0.9.26 3 January 2004 + + This simply adds a fix for a pthread bug that was noticed a few hours + after the previous release. Otherwise identical to 0.9.25. + + This release remains binary compatible with uClibc 0.9.21-25 as long as + you take care to avoid any configuraton changes that will break things. + We _were_ planning to break binary compatibilty in this release, but + decided to hold those changes so we could push out a bugfix release. + + We _will_ break binary compatibilty in the upcoming 0.9.27 release to + implement a few things we have been postponing. That should hopefully be + the last ABI change before we freeze the ABI for the upcoming 1.0.x + stable uClibc series. + +Release highlights: + o A trivial fix for a pthread bug + o Nothing else + + -Erik + + + +0.9.25 3 January 2004 See Changelog.full for the complete list of who did what. @@ -32,8 +55,6 @@ Release highlights: - - 0.9.24 15 December 2003 See Changelog.full for the complete list of who did what. diff --git a/Changelog.full b/Changelog.full index fe74bea4c..bf6c91ce8 100644 --- a/Changelog.full +++ b/Changelog.full @@ -809,4 +809,51 @@ Be sure to fully clean 2.6 kernel headers on 'make clean' Members: Makefile:1.241->1.242 +--------------------- +PatchSet 2987 +Date: 2004/01/03 11:06:47 +Author: andersen +Branch: HEAD +Tag: (none) +Log: +Update for release + +Members: + Changelog:1.24->1.25 + Changelog.full:1.18->1.19 + Changelog.full.last:1.2->1.3 + docs/uclibc.org/about.html:INITIAL->1.1 + docs/uclibc.org/header.html:1.2->1.3 + docs/uclibc.org/index.html:1.79->1.80 + docs/uclibc.org/news.html:1.5->1.6 + +--------------------- +PatchSet 2988 +Date: 2004/01/03 11:17:11 +Author: andersen +Branch: HEAD +Tag: uClibc_0_9_25 +Log: +Fix up the news a bit + +Members: + docs/uclibc.org/news.html:1.6->1.7 + docs/uclibc.org/oldnews.html:1.1->1.2 + +--------------------- +PatchSet 2989 +Date: 2004/01/04 01:29:01 +Author: mjn3 +Branch: HEAD +Tag: (none) +Log: +My mistake. We do need some weak pthread_* funcs. But we were previously +missing one in the glibc abi, and including a number of extras (which I +left in commented). +Unfortunately, this brings back the perl pthread bug. Fixing the incorrect +weaks in libpthread wasn't sufficient to escape the shared loader bug. :-( + +Members: + libc/misc/pthread/weaks.c:1.4->1.5 + @@ -58,7 +58,7 @@ HOSTCFLAGS=-O2 -Wall # this stuff alone. MAJOR_VERSION:=0 MINOR_VERSION:=9 -SUBLEVEL:=25 +SUBLEVEL:=26 VERSION:=$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL) # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc. LC_ALL:= C diff --git a/docs/uclibc.org/news.html b/docs/uclibc.org/news.html index 238ec3e4c..03805e326 100644 --- a/docs/uclibc.org/news.html +++ b/docs/uclibc.org/news.html @@ -3,6 +3,30 @@ <ul> + <li> <b>3 January 2004, uClibc 0.9.26 Released</b> + <br> + + CodePoet Consulting is sorry to announce there was a pthred bug that + slipped though our extensive testing and was only noticed a few hours + after previous release. As a result, we are releasing uClibc 0.9.26 + which fixes this bug, but is otherwise identical to the previous release. + + This release remains binary compatible with uClibc 0.9.21-25 (as long as + you take care to avoid any configuraton changes that will break things). + Please be aware we <b>will</b> break binary compatibilty in the upcoming + 0.9.27 release to implement a few necessary changes we have been + postponing. That will hopefully be the last ABI change before we freeze + the ABI for the upcoming 1.0.x stable uClibc series. + + <p> + + As usual, the + <a href="http://www.uclibc.org/downloads/Changelog">Changelog</a>, + <a href="http://www.uclibc.org/downloads/Changelog.full">detailed changelog</a>, + and <a href="http://www.uclibc.org/downloads/uClibc-0.9.26.tar.bz2">source code for this release</a> + are available <a href="http://www.uclibc.org/downloads/">here</a>. + + <li> <b>3 January 2004, uClibc 0.9.25 Released</b> <br> |