76da594 Bump version to 0.1.0

Authored and Committed by Alois Mahdal 4 years ago
1 file changed. 1 lines added. 1 lines removed.
    Bump version to 0.1.0
    
    Overview of changes:
    
     *  Addded support for test documentation auto-generation
    
        Test suite maintainets can now add test documentation to their `test`
        scripts in form of Markdown based docstrings as described by Shellfu
        coding style.
    
            https://netvor.info/notes/shellfu-style.html
    
        If they decide to do so, calling `make jatdoc` (ideally after
        `make release`) will compile `suite.md`, which can be converted
        to HTML5 and published on a web server.
    
        Documents produced this way can be easily linked to test results
        by providing base URL of the web server as environment variable
        when using `jattool export`.
    
        For example, given a test suite for 'mypkg' at version 0.0.1 running
        test sanity/smoke, export command:
    
            JATTOOL__TDBASEURL=https://example.com/jatdoc/ jattool export /path/to/log.yaml
    
        will automatically include links to
    
            https://example.com/jatdoc/mypkg/v0.0.1/suite.html#sanity/smoke
    
        where `v0.0.1/suite.html` is direct conversion of `jatdoc/v0.0.1/suite.md`
        as generated by `make jatdoc`.
    
     *  Updated TDK file layout to enable using TDK Makefile as entry point
    
        This is the non-compatible change; it will require projects to
        switch to new path in their Makefile:
    
            include /usr/share/jattool/tdk/Makefile
    
        However, this change enables more extensions to be accessed via
        Makefile, almost eliminating need of future non-compatible changes.
    
     *  Moved to branch naming scheme
    
        ...where latest released version is tracked by branch 'latest', not
        'last'.
    
     *  Updated MKit for test suites and jattool to v0.0.39
    
        
file modified
+1 -1