home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / misc / HISTORY.txt < prev    next >
Text File  |  1999-06-05  |  23KB  |  459 lines

  1.  
  2.                              History of changes
  3.                                       
  4.      Lastest version first.
  5.      For a note on version numbering, see the [1]SmallEiffel FAQ.
  6.    Release - 0.78 - Saturday June 05th, 1999.
  7.      * New -html2 flag for command short generates a colorized HTML short
  8.        form for classes.
  9.      * The garbage collector now takes into account feature dispose of
  10.        class MEMORY for reference objects.
  11.      * Obsolete classes (obsolete keyword) now supported.
  12.      * Assertion tags are now displayed when an assertion fails.
  13.      * Added environment variable in loadpath files. Syntax: ${SOME_VAR}
  14.      * Added the -no_style_warning flag to suppress warnings when the
  15.        recommended styles guidelines for Eiffel are not strictly
  16.        followed.
  17.      * Added the -version flag to show SmallEiffel's version.
  18.      * Enhanced ease of use with and adaptability to various C compilers
  19.        (SYSTEM_TOOLS). Files compiler.system, linker.system and
  20.        o_suffix.system are now obsolete and replaced by a unique file
  21.        compiler.se common to all systems. See the [2]System configuration
  22.        page for more information.
  23.      * Class LINKED_LIST now replaces obsolete class LINK_LIST (simple
  24.        renaming).
  25.        Class TWO_WAY_LINKED_LIST now replaces obsolete class LINK2_LIST
  26.        (simple renaming).
  27.      * Fixed "implicit renaming" bug.
  28.      * Cleaned all source code of tabulations at beginning of line (made
  29.        code look ugly when using an editor whose tabs were not 8).
  30.      * Some new ELKS'95 features implemented.
  31.      * Validity rule VEEN fixed.
  32.      * Added class COLLECTION_SORTER and REVERSE_COLLECTION_SORTER to the
  33.        library.
  34.      * Fixed file renaming portability bug (".d files bug").
  35.      * Validity rule VCFG.1 is now enforced.
  36.      * Validity rule VAPE is now enforced.
  37.      * Classes mentioned in a cecil.se file are now automatically made
  38.        live. Makes it easier to link with external libraries.
  39.      * Various other bug fixes.
  40.        
  41.                                    [Line]
  42.                                       
  43.    Release - 0.79 - Tuesday December 22nd, 1998.
  44.      * The new Eiffel construct Precursor as described OOSC2 is now
  45.        implemented.
  46.      * The Eiffel expression strip is now implemented.
  47.      * Nested loadpath files now allowed.
  48.      * Extended anchored definition to accept infix and prefix feature
  49.        names. For example, this kind of declaration is now accepted :
  50.          foo: like infix "+".
  51.      * Classes COLLECTION2, ARRAY2 and FIXED_ARRAY2 of lib_std completely
  52.        revisited.
  53.      * Fixed a bug related to calls of the form f.g.h; on expanded
  54.        objects.
  55.      * Fixed a bug related to inheritance of generic classes.
  56.      * Fixed bugs related to assertions checking in case of exceptions
  57.        (rescue clause, retry). Improved cycle detection in assertions.
  58.      * Fixed bug in GC related to recycling of "monsters" (very large
  59.        resizable objets).
  60.      * Fixed an incredible bug in the implementation of the like Current
  61.        type mark. ;-).
  62.      * Fixed many others bugs ($ operator, GC for alpha DEC, ...).
  63.      * System customization file for the BeOS system added in the "sys"
  64.        sub-directory (more on [3]system customization).
  65.      * Contents of the environment variable SmallEiffel must be now set
  66.        with the absolute path of the file "system.se" which is in the
  67.        sub-directory "sys" of the installation directory.
  68.        Under a UNIX-like system, the value of the SmallEiffel environment
  69.        variable may be for example: /usr/lib/SmallEiffel/sys/system.se
  70.        Commands are also more robust when this environment variable
  71.        contains non-alphanumeric characters.
  72.      * No more ensure assertion in GENERAL.get_environment_variable.
  73.      * Commands [4]compile_to_jvm and [5]print_jvm_class completely
  74.        revisited. Java byte-code can be now used with the -verify Java
  75.        option).
  76.      * Validity rule VDRD.6 is now enforced.
  77.      * Balancing rule (automatic promotion) for INTEGER, DOUBLE and REAL
  78.        is now implemented.
  79.      * Recursive once routines now work correctly.
  80.      * Unmodified generated C files are not touched anymore.
  81.      * Assertions correctly checked for all external C routines.
  82.      * Exception handling now works when an exception occurs in external
  83.        C code.
  84.      * Cleaned the compiler and decreased its memory footprint.
  85.        
  86.                                    [Line]
  87.                                       
  88.    Release - 0.80 - Thursday July 9th, 1998.
  89.      * Exception handling implemented. Class EXCEPTIONS added in lib_std.
  90.      * Execution trace stack implementation completely revisited: more
  91.        comprehensive information is now available, and the overhead
  92.        incurred by this stack is greatly reduced (executables are about 3
  93.        times faster when running in -all_check mode).
  94.      * Added option -no_main in command [6]compile_to_c to avoid
  95.        generation of the C main function. This is useful when one wants
  96.        to start execution from outside before calling some Eiffel
  97.        routines via the [7]cecil interface.
  98.      * Behavior of compilation flag [8]-trace of command compile_to_c
  99.        changed to allow step-by-step execution (embryo of Eiffel source
  100.        code debugger).
  101.      * Feature ARRAY.resize completely revisited (added two features in
  102.        class NATIVE_ARRAY: clear and move).
  103.      * Garbage Collector optimized (the GC should be more agressive and
  104.        some benchmarks are included in directory
  105.        SmallEiffel/misc/benchmarks/gc/*/bench.e).
  106.      * Associativity of infix operator "^" is now correctly handled.
  107.      * Fixed bugs in PLATFORM for Minimum_double, Minimum_real and
  108.        Minimum_character_code.
  109.      * Fixed some others bugs about export rules, about expanded objects
  110.        with expanded attributes.
  111.      * Fixed bugs in pretty.
  112.        
  113.                                    [Line]
  114.                                       
  115.    Release - 0.81 - Thursday April 9th, 1998
  116.      * First finalized version of the garbage collector. Currently
  117.        supported architectures are SPARC Solaris, HP-UX, Linux, MacOS,
  118.        Windows 95 and NT (see file SmallEiffel/sys/gc for details). Added
  119.        flag -no_gc to suppress the GC (see [9]man/compile_to_c).
  120.      * Changed the default for the generation of C code. Now, the C code
  121.        and object files are kept by default. (This previously required
  122.        using option -c_code, which becomes obsolete.)
  123.        Added flag -clean which removes all the C and object files of the
  124.        system. (This corresponds to the old default behavior.)
  125.      * Fixed a bug related to buffered input under Windows/MS VC.
  126.      * Fixed a bug in misc/INSTALL.SH script.
  127.      * Added require is_connected for all features put_* of class
  128.        OUTPUT_STREAM.
  129.      * Fixed a bug in command [10]short (require/ensure assertion of
  130.        deferred routines are now printed).
  131.      * Added one useful hook for mode -html1 in command [11]short (see
  132.        hook Mcn).
  133.      * Added directory SmallEiffel/sys/runtime which contains the C
  134.        runtime.
  135.      * Fixed a bug about instanciation of class ANY itself (not so common
  136.        !).
  137.      * Fixed a bug about inlining of operator $.
  138.      * Fixed a bug about cyclic anchored definitions.
  139.        
  140.                                    [Line]
  141.                                       
  142.    Release - 0.82 - Friday January 16th, 1998
  143.      * Became the official GNU Eiffel compiler.
  144.      * Added first HTML mode to command [12]short. Flag -html1. Thanks to
  145.        Matthias Klause.
  146.      * Fixed bugs in command [13]pretty.
  147.      * It is now possible to rename/redefine external "SmallEiffel"
  148.        features.
  149.      * Files *.hlp of directory SmallEiffel/man no longer exists. All the
  150.        documentation is now in *.html files plus corresponding
  151.        automatically generated *.txt files.
  152.      * Manifest arrays creation has been optimized.
  153.      * Validity rule VHRC.2 is now enforced.
  154.      * Fixed bugs about export clause.
  155.      * Feature GENERAL.hash_code no longer exists. Added ELKS class
  156.        HASHABLE in order to be compatible with others
  157.        compilers/libraries.
  158.      * Fixed a bug in pre-computed once functions.
  159.      * Fixed a bug in REAL/DOUBLE keybord input.
  160.      * Reintroduced left hand side cast in C code for better performances
  161.        (allowed by the C ANSI standard).
  162.      * Obsolete features (obsolete keyword) now generate a Warning.
  163.        
  164.                                    [Line]
  165.                                       
  166.    Release - 0.83 - Friday September 19th, 1997
  167.      * Added command short to the distribution.
  168.      * Added directory contrib in the distribution. This directory
  169.        contains some scripts to use gdb as source level debugger for
  170.        SmallEiffel.
  171.      * Added flag -no_warning to commands: compile_to_c, pretty, and
  172.        compile_to_jvm.
  173.      * Added flag -case_insensitive to command compile_to_c.
  174.      * Fixed a bug for inherit/select.
  175.      * Fixed a bug for some pre-computed once function.
  176.        
  177.                                    [Line]
  178.                                       
  179.    Release - 0.84 - Monday August 18th, 1997
  180.      * Class BIT is now implemented in Java bytecode (command
  181.        compile_to_jvm).
  182.      * Added external specification to call Java code (when using
  183.        compile_to_jvm).
  184.      * To fit on a single 3.5 inches disk, unsplitted C code for large
  185.        commands (compile_to_c and compile_to_jvm) is no longer in the
  186.        distribution as well as the old lib_test directory.
  187.      * Changed the algorithm to load classes in order to allow upper case
  188.        letters in files names (priority is always given to lower case
  189.        file names).
  190.      * Added STRING.substring_index (from ELKS written by Fridtjof
  191.        SIEBERT).
  192.      * Added one more file in SmallEiffel/sys/ directory in order to
  193.        customize object files suffix (thus, using Borland C compiler on
  194.        Windows is now possible).
  195.      * Changed the behavior of end_of_input of INPUT_STREAM (this flag is
  196.        true _after_ last character has been read).
  197.      * Fixed a bug in manifest arrays (mixed objects including Void).
  198.      * Fixed a bug dealing with some statically computed expressions.
  199.      * Fixed a bug in repeated inheritance.
  200.        
  201.                                    [Line]
  202.                                       
  203.    Release - 0.85 - Thursday July 3rd, 1997
  204.      * First beta-release of commands compile_to_jvm and print_jvm_class!
  205.      * The new name for class C_ARRAY is now NATIVE_ARRAY (because it
  206.        works both with Java and C). The old C_ARRAY name is temporarily
  207.        accepted with a warning from the compiler.
  208.      * For readability and to avoid confusion with Java names, external
  209.        tags have changed (see for new names in [14]man/external file).
  210.        Old names are temporarily accepted with a warning giving the new
  211.        name to use.
  212.      * Added feature to_hexadecimal and feature to_hexadecimal_in in
  213.        class CHARACTER.
  214.      * Feature io, std_input, std_output and std_error of class GENERAL
  215.        are no longer frozen.
  216.      * Some changes in STD_FILE_READ for features read_integer,
  217.        read_double and read_real (added comments, precondition and solved
  218.        the problem with the trailing separator).
  219.      * Feature die_with_code of GENERAL now accepts any INTEGER code (not
  220.        just predefined exit_success_code and exit_failure_code).
  221.      * Fixed a bug in STRING. The following expression is now true:
  222.        ("a%/0/b").count = 3
  223.        Just try this on your favorite Eiffel compiler ;-)
  224.      * Many changes in basic input/output in order to be compatible with
  225.        Java: No more class STD_FILE (the name is now free for an ELKS
  226.        implementation). Two new classes: INPUT_STREAM and OUTPUT_STREAM.
  227.      * Feature unread_character of class INPUT_STREAM is now implemented
  228.        in Eiffel.
  229.      * Added OUTPUT_STREAM.put_pointer to view a POINTER.
  230.        
  231.                                    [Line]
  232.                                       
  233.    Release - 0.86 - Sunday April 13th, 1997
  234.      * All reported bugs at this time have been fixed.
  235.      * Added flag -verbose to commands: compile, compile_to_c and clean.
  236.        When this new flag is not present, commands now work silently
  237.        unless some error (or warning) occurs.
  238.      * Features BOOLEAN.infix "or" and BOOLEAN.infix "and" are now
  239.        written in pure Eiffel. As a consequence, it is very important for
  240.        the SmallEiffel programmer to make the distinction between
  241.        BOOLEAN.infix "and then" and BOOLEAN.infix "and" (respectively for
  242.        BOOLEAN.infix "or else" and BOOLEAN.infix "or"). When
  243.        left-hand-side argument produces no side effect, the semi-strict
  244.        operator (BOOLEAN.infix"and then"/"or else") may run faster.
  245.      * Fixed REAL.sin (the old one was calling sqrt :-).
  246.      * Fixed a bug in INTEGER.append_in (you can now print
  247.        Minimum_integer).
  248.      * Added feature in_range in class COMPARABLE.
  249.      * Result type of REAL.infix "^" is now DOUBLE for ELKS
  250.        compatibility.
  251.      * Feature remove is now implemented in all subclasses of COLLECTION
  252.        (i.e. ARRAY, FIXED_ARRAY, LINK_LIST and LINK2_LIST).
  253.      * Added feature add for all subclasses of COLLECTION.
  254.      * Conversion DOUBLE/STRING : ANSI C sscanf and sprintf is now used
  255.        to avoid loss of precision.
  256.      * Added some more class invariant code generation when compiling in
  257.        -invariant_check mode. Class invariant is now also checked before
  258.        exit of a routine.
  259.      * Added feature file_tools in class GENERAL to ease access to class
  260.        FILE_TOOLS.
  261.      * Changed printing format for basic *_REF classes. For example,
  262.        instruction print(1); now prints 1.
  263.      * Feature truncated_to_integer of DOUBLE is now ELKS compatible
  264.        (added feature rounded in class DOUBLE to replace the old
  265.        truncated_to_integer). Same changes in class REAL.
  266.        
  267.                                    [Line]
  268.                                       
  269.    Release - 0.87 - Tuesday January 7th, 1997
  270.      * Added a new flag -trace to ease debug (see [15]man/compile_to_c
  271.        file).
  272.      * More inlining at Eiffel level (-boost mode only).
  273.      * Class BIT_N completely revisited. It may be as fast as C.
  274.      * Added class C_ARRAY[E] to deal directly with C arrays at Eiffel
  275.        level. Thus there are no more external "CSE" or c_inline_c in
  276.        classes STRING/ARRAY/FIXED_ARRAY (only full Eiffel). Eiffel code
  277.        is nice and STRING/ARRAY/FIXED_ARRAY may run faster.
  278.      * Fixed a bug in STD_FILE_READ.read_double.
  279.      * Ordering of C output to increase gcc inlining.
  280.      * According to [16]man/compile_to_c) , flag -debug_check now works
  281.        (debug instructions are no longer generated in mode -all_check).
  282.      * Unused local variables removed at Eiffel level (warning added for
  283.        -debug_check mode only).
  284.      * Default class ANY now inherits PLATFORM (as in ETL).
  285.      * Fixed a bug in floating-point constants.
  286.      * Added directory sys to customize default C compiler, default C
  287.        linker and default loading path.
  288.      * Fixed some bugs with outside expanded types.
  289.      * Fixed a bug with rename/select.
  290.      * Redefinition of once routine is now allowed.
  291.      * Feature GENERAL.conforms_to is now implemented.
  292.      * Rule VFFD.7 is now enforced.
  293.      * Feature force implemented for all COLLECTION.
  294.      * Added conversions features CHARACTER.to_bit, INTEGER.to_bit,
  295.        BIT_N.to_character and BIT_N.to_integer.
  296.        
  297.                                    [Line]
  298.                                       
  299.    Release - 0.88 - Wednesday October 30th, 1996
  300.      * Fixed bugs dealing with inherit/rename/select.
  301.      * Added warning for missing colon in actual arguments list.
  302.      * Warning : INSTALL procedure has changed and you have to set
  303.        manually the default loading path (see misc/INSTALL for details).
  304.      * Added some VMS customization.
  305.      * Fixed bugs when printing run-time stack.
  306.      * Warning added for missing colon in actual parameter list.
  307.      * Added flush in class STD_FILE_WRITE.
  308.      * No more left hand side cast in C code (because some C compilers
  309.        don't like them).
  310.        
  311.                                    [Line]
  312.                                       
  313.    Release - 0.89 - Sunday September 15th, 1996
  314.      * Calling Eiffel from C is now implemented (see [17]man/cecil)
  315.        file).
  316.      * Object creation uses C calloc instead malloc+memset.
  317.      * Object creation is inlined.
  318.      * ARRAY/FIXED_ARRAY put and item are now inlined (-boost only).
  319.      * Added feature capacity and resize in FIXED_ARRAY.
  320.      * Added some classes in std_lib: LINK2_LIST (two way linked list),
  321.        COLLECTION2 (deferred), ARRAYED_COLLECTION (deferred),
  322.        LINKED_COLLECTION (deferred) and FIXED_ARRAY2 in std_lib.
  323.      * More user's routines are inlined (-boost only).
  324.        
  325.                                    [Line]
  326.                                       
  327.    Release - 0.90 - Friday August 23rd, 1996
  328.      * Added random number generator library (SmallEiffel/lib_rand).
  329.      * Added checking of assertions for external "CSE" features.
  330.      * Anchoring on expanded types are now allowed.
  331.      * Multiple level of anchoring definition allowed.
  332.      * Fixed a bug in STRING.from_external.
  333.      * Fixed a bug with mixed rename/redefine.
  334.      * Inheritance loop detection.
  335.      * Anchoring loop detection.
  336.      * Fixed a bug with renaming infix/prefix.
  337.      * Command clean also use the make suffix.
  338.      * Added ELKS95 sign in INTEGER/REAL/DOUBLE.
  339.      * Feature make is the default root feature name for compile.
  340.      * Optimized ARRAY.add_last and STRING.extend.
  341.      * Changed STRING.out (no more enclosing %" printed).
  342.      * Remove warning gcc messages for 64 bits machine (alpha/DECK).
  343.      * Added option -no_split for a better finalization (see
  344.        [18]man/compile_to_c) file).
  345.        
  346.                                    [Line]
  347.                                       
  348.    Release - 0.91 - Wednesday July 24th, 1996
  349.      * Incremental C compiling mode implemented (see option -c_code in
  350.        help file [19]man/compile) .
  351.      * Added command clean in help file [20]man/clean.
  352.      * Added class FILE_TOOLS.
  353.      * No more empty C struct in generated C code (to avoid problems with
  354.        Microsoft Windows C compiler).
  355.      * Fixed one more bug with conformance rule VNCG.
  356.        
  357.                                    [Line]
  358.                                       
  359.    Release - 0.92 - Saturday July 20th, 1996
  360.      * Fixed some more bugs with conformance rule VNCG.
  361.      * Added math functions in DOUBLE/REAL (sin, cos, tan, asin, acos,
  362.        atan, ... ANSI C names).
  363.        
  364.                                    [Line]
  365.                                       
  366.    Release - 0.93 - Thursday July 18th, 1996
  367.      * Fixed some more bugs with conformance rule VNCG.
  368.      * Type BIT is now implemented.
  369.      * Added ELKS 95 STRING.left_adjust and STRING.right_adjust.
  370.        
  371.                                    [Line]
  372.                                       
  373.    Release - 0.94 - Friday July 5th, 1996
  374.      * Fixed some bugs with conformance rule VNCG.
  375.      * Static expressions are used to detect pre-computable once
  376.        routines.
  377.      * Added features to_external and from_external both in classes ARRAY
  378.        and FIXED_ARRAY.
  379.      * Fixed a bug for inheritance of ARRAY or FIXED_ARRAY.
  380.      * Contents of end of class comment checked.
  381.      * Added documentation file for external calls (see help file
  382.        [21]man/external ).
  383.        
  384.                                    [Line]
  385.                                       
  386.    Release - 0.95 - Thursday May 30th, 1996
  387.      * It is now possible to inherit ARRAY.
  388.      * It is now possible to inherit STRING.
  389.      * Flag -cc of compile_to_c has changed.
  390.      * The PLATFORM class is now conform to ELKS95.
  391.      * Added feature twin (like the one of TowerEiffel) in GENERAL.
  392.      * Added features to_external and from_external in class STRING.
  393.      * Fixed some bugs in once pre-computed routines.
  394.        
  395.                                    [Line]
  396.                                       
  397.    Release - 0.96 - Friday May 10th, 1996
  398.      * Internal renaming to suppress some warning messages and for a
  399.        smooth integration with C++ software.
  400.      * DOS and Macintosh better portability.
  401.        
  402.                                    [Line]
  403.                                       
  404.    Release - 0.97 - Thursday May 2nd, 1996
  405.      * Inside of compiler cleaned.
  406.      * Pre-Computing of some once functions.
  407.      * Added class COLLECTION, LINK_LIST and FIXED_ARRAY in lib_std.
  408.        
  409.                                    [Line]
  410.                                       
  411.    Release - 0.98 - Friday March 15th, 1996
  412.      * Command pretty added.
  413.      * Implements Eiffel expanded clause.
  414.        
  415.                                    [Line]
  416.                                       
  417.    Release - 0.99 - Saturday February 17th, 1996
  418.      * The first version available on the net. Before being made
  419.        available, the very first SmallEiffel had been tested since
  420.        September 1995 by students of the University Henri Poincaré
  421.        
  422.                                    [Line]
  423.                                       
  424.    Release - 1.00 - July 1995
  425.      * The very first bootstrap. SmallEiffel is born.
  426.        
  427.    
  428.    
  429.                                    [Line]
  430.                                       
  431.              Copyright © Dominique COLNET and Suzanne COLLIN -
  432.                            [22]<colnet@loria.fr>
  433.                   Last update: 05 June 1999, by DC & OZ. 
  434.  
  435. References
  436.  
  437.    1. file://localhost/home/colnet/SmallEiffel/misc/man/SmallEiffelFAQ.html#Q02
  438.    2. file://localhost/home/colnet/SmallEiffel/misc/man/system.html
  439.    3. file://localhost/home/colnet/SmallEiffel/misc/man/system.html
  440.    4. file://localhost/home/colnet/SmallEiffel/misc/man/compile_to_jvm.html
  441.    5. file://localhost/home/colnet/SmallEiffel/misc/man/print_jvm_class.html
  442.    6. file://localhost/home/colnet/SmallEiffel/misc/man/compile_to_c.html
  443.    7. file://localhost/home/colnet/SmallEiffel/misc/man/cecil.html
  444.    8. file://localhost/home/colnet/SmallEiffel/misc/man/compile_to_c.html#trace
  445.    9. file://localhost/home/colnet/SmallEiffel/misc/man/compile_to_c.html
  446.   10. file://localhost/home/colnet/SmallEiffel/misc/man/short.html
  447.   11. file://localhost/home/colnet/SmallEiffel/misc/man/short.html
  448.   12. file://localhost/home/colnet/SmallEiffel/misc/man/short.html
  449.   13. file://localhost/home/colnet/SmallEiffel/misc/man/pretty.html
  450.   14. file://localhost/home/colnet/SmallEiffel/misc/man/external.html
  451.   15. file://localhost/home/colnet/SmallEiffel/misc/man/compile_to_c.html
  452.   16. file://localhost/home/colnet/SmallEiffel/misc/man/compile_to_c.html
  453.   17. file://localhost/home/colnet/SmallEiffel/misc/man/cecil.html
  454.   18. file://localhost/home/colnet/SmallEiffel/misc/man/compile_to_c.html
  455.   19. file://localhost/home/colnet/SmallEiffel/misc/man/compile.html
  456.   20. file://localhost/home/colnet/SmallEiffel/misc/man/clean.html
  457.   21. file://localhost/home/colnet/SmallEiffel/misc/man/external.html
  458.   22. mailto:colnet@loria.fr
  459.