| Those are the public releases made: 1.1.6: Apr 18 2004- 2 bug fixes about keys fixed one by Mark Vakoc
+
1.1.5: Mar 23 2004- performance: use dictionnary lookup for variables
- remove use of _private from source documents
- cleanup of "make tests" output
- bugfixes: AVT in local variables, use localtime_r to avoid thread
diff --git a/doc/xslt.html b/doc/xslt.html
index 3af4646a..047bdde4 100644
--- a/doc/xslt.html
+++ b/doc/xslt.html
@@ -127,11 +127,12 @@ for portability problem, it makes things really harder to track and in some
cases I'm not the best person to answer a given question, ask the list
instead. Do not send code, I won't debug it (but patches are
really appreciated!).
-
Please note that with the current amount of virus and SPAM, sending
-mail to the list without being subscribed won't work. There is *far too
-many bounces* (in the order of a thousand a day !) I cannot approve them
-manually anymore. If your mail to the list bounced waiting for administrator
-approval, it is LOST ! Repost it and fix the problem triggering the error.
+
+Please note that with the current amount of virus and SPAM, sending mail
+to the list without being subscribed won't work. There is *far too many
+bounces* (in the order of a thousand a day !) I cannot approve them manually
+anymore. If your mail to the list bounced waiting for administrator approval,
+it is LOST ! Repost it and fix the problem triggering the error.
Check the following too before
posting:
@@ -294,6 +295,11 @@ platform, get in touch with me to upload the package. I will keep them in the
Those are the public releases made:
+1.1.6: Apr 18 2004
+
+ - 2 bug fixes about keys fixed one by Mark Vakoc
+
+
1.1.5: Mar 23 2004
- performance: use dictionnary lookup for variables
diff --git a/libxslt.spec.in b/libxslt.spec.in
index 1b484a3b..6998fd38 100644
--- a/libxslt.spec.in
+++ b/libxslt.spec.in
@@ -56,6 +56,7 @@ with XPath functions written in Python.
%build
%configure
make
+gzip -9 ChangeLog
%install
rm -fr %{buildroot}
@@ -74,7 +75,7 @@ rm -fr %{buildroot}
%files
%defattr(-, root, root)
-%doc AUTHORS ChangeLog NEWS README Copyright TODO FEATURES
+%doc AUTHORS ChangeLog.gz NEWS README Copyright TODO FEATURES
%doc doc/*.html doc/html doc/tutorial doc/*.gif
%doc %{_mandir}/man1/xsltproc.1*
%{_libdir}/lib*.so.*
@@ -83,7 +84,7 @@ rm -fr %{buildroot}
%files devel
%defattr(-, root, root)
-%doc AUTHORS ChangeLog NEWS README Copyright TODO FEATURES
+%doc AUTHORS ChangeLog.gz NEWS README Copyright TODO FEATURES
%doc doc/libxslt-api.xml
%doc doc/libxslt-refs.xml
%doc doc/EXSLT/libexslt-api.xml
@@ -102,7 +103,7 @@ rm -fr %{buildroot}
%files python
%defattr(-, root, root)
-%doc AUTHORS ChangeLog NEWS README Copyright FEATURES
+%doc AUTHORS ChangeLog.gz NEWS README Copyright FEATURES
%{_libdir}/python*/site-packages/libxslt.py
%{_libdir}/python*/site-packages/libxsltmod*
%doc python/TODO
diff --git a/libxslt/xsltwin32config.h b/libxslt/xsltwin32config.h
index 49ddbaa8..93001a7f 100644
--- a/libxslt/xsltwin32config.h
+++ b/libxslt/xsltwin32config.h
@@ -23,21 +23,21 @@ extern "C" {
*
* the version string like "1.2.3"
*/
-#define LIBXSLT_DOTTED_VERSION "1.1.5"
+#define LIBXSLT_DOTTED_VERSION "1.1.6"
/**
* LIBXSLT_VERSION:
*
* the version number: 1.2.3 value is 1002003
*/
-#define LIBXSLT_VERSION 10105
+#define LIBXSLT_VERSION 10106
/**
* LIBXSLT_VERSION_STRING:
*
* the version number string, 1.2.3 value is "1002003"
*/
-#define LIBXSLT_VERSION_STRING "10105"
+#define LIBXSLT_VERSION_STRING "10106"
/**
* WITH_XSLT_DEBUG:
|
|
|
|