Check-in Number:
|
1768 | |
Date: |
2002-Jan-31 21:31:47 (local)
2002-Jan-31 20:31:47 (UTC) |
User: | rse |
Branch: | |
Comment: |
bump release number |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/ex/README 1.2 -> 1.3
--- README 2002/01/26 20:12:19 1.2
+++ README 2002/01/31 20:31:47 1.3
@@ -4,21 +4,22 @@
\___/_/\_\
OSSP ex - Exception Handling Library
- Version 0.1.0 (26-Jan-2002)
+ Version 0.9.0 (31-Jan-2002)
ABSTRACT
- The OSSP ex library is a small ISO-C++ style exception handling
- library for use in the ISO-C language. It allows you to use the
- paradigm of throwing and catching exceptions in order to reduce the
- amount of error handling code in without making your program less
- robust. This is achieved by directly transferring exceptional return
- codes (and the program control flow) from the location where it was
- raised (throw point) to the location where it is handled (catch point)
- - usually from a deeply nested sub-routine to a parent routine. All
- intermediate routines no longer have to make sure that the exceptional
- return codes from sub-routines are correctly passed back to the
- parent.
+ OSSP ex is a small ISO-C++ style exception handling library for use in
+ the ISO-C language. It allows you to use the paradigm of throwing and
+ catching exceptions in order to reduce the amount of error handling
+ code without making your program less robust.
+
+ This is achieved by directly transferring exceptional return codes
+ (and the program control flow) from the location where the exception
+ is raised (throw point) to the location where it is handled (catch
+ point) -- usually from a deeply nested sub-routine to a parent
+ routine. All intermediate routines no longer have to make sure that
+ the exceptional return codes from sub-routines are correctly passed
+ back to the parent.
COPYRIGHT AND LICENSE
|
|
ossp-pkg/ex/VERSION 1.1 -> 1.2
--- VERSION 2002/01/26 20:12:19 1.1
+++ VERSION 2002/01/31 20:31:47 1.2
@@ -2,5 +2,5 @@
VERSION -- Version Information for OSSP ex (syntax: Text)
[automatically generated and maintained by GNU shtool]
- This is OSSP ex, Version 0.1.0 (26-Jan-2002)
+ This is OSSP ex, Version 0.9.0 (31-Jan-2002)
|
|
ossp-pkg/ex/devtool.conf 1.1 -> 1.2
--- devtool.conf 2002/01/26 20:12:19 1.1
+++ devtool.conf 2002/01/31 20:31:47 1.2
@@ -21,6 +21,9 @@
%version
./shtool version -l txt -n "OSSP ex" -e VERSION
+ V=`./shtool version -l txt -d long VERSION`
+ sed -e "s/Version .*(.*)/Version $V/g" <README >README.n
+ mv README.n README
%dist
make distclean >/dev/null 2>&1
|
|