From: Fletcher T. Penney Date: Wed, 24 May 2017 17:47:23 +0000 (-0400) Subject: version bump X-Git-Tag: 6.0.6^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee143d1387b5f4c4061b826d7f148ad417be8e46;p=multimarkdown version bump --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 2e082d6..012d324 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,10 +8,10 @@ cmake_minimum_required (VERSION 2.6) set (My_Project_Title "MultiMarkdown") set (My_Project_Description "Lightweight markup processor to produce HTML, LaTeX, and more.") set (My_Project_Author "Fletcher T. Penney") -set (My_Project_Revised_Date "2017-05-02") +set (My_Project_Revised_Date "2017-05-24") set (My_Project_Version_Major 6) set (My_Project_Version_Minor 0) -set (My_Project_Version_Patch 5) +set (My_Project_Version_Patch 6) set (My_Project_Version "${My_Project_Version_Major}.${My_Project_Version_Minor}.${My_Project_Version_Patch}") diff --git a/DevelopmentNotes/DevelopmentNotes.epub b/DevelopmentNotes/DevelopmentNotes.epub index af7f19f..991ad51 100644 Binary files a/DevelopmentNotes/DevelopmentNotes.epub and b/DevelopmentNotes/DevelopmentNotes.epub differ diff --git a/DevelopmentNotes/DevelopmentNotes.fodt b/DevelopmentNotes/DevelopmentNotes.fodt index 69ad714..eb2e279 100644 --- a/DevelopmentNotes/DevelopmentNotes.fodt +++ b/DevelopmentNotes/DevelopmentNotes.fodt @@ -274,7 +274,7 @@ MultiMarkdown v6 Development Notes Fletcher T. Penney - 2017-03-28 + 2017-05-24 dd2d8e76-dc2d-416d-9acd-5395d20871c2 @@ -755,6 +755,91 @@ more cross-platform approach than that used by MMD v5. Changelog + +2017–05–24 - v 6.0.6: + + + + +ADDED: Add function for accessing library version + + + +ADDED: Restructure superscript + + + +CHANGED: Continue to refactor core API routines for clarity and flexibility + + + +CHANGED: Don't strip list markers from nested list items + + + +CHANGED: Extended ASCII support interferes with UTF–8 support – disable it + + + +CHANGED: Fix style + + + +CHANGED: Preserve closing Heading markers + + + +CHANGED: Refactor CriticMarkup basic commands to be part of libMultiMarkdown.h + + + +CHANGED: Refactor code for more consistent API naming in libMultiMarkdown.h; Add functionality to list metadata keys and extract specific metadata values + + + +CHANGED: Refactor transclude_source to be part of main libMultiMarkdown.h + + + +CHANGED: Restructure strong/emph to a nested structure + + + +FIXED: Adjust CMake configuration for Linux to allow building with libcurl + + + +FIXED: Fix regression in EPUB code refactoring + + + +FIXED: Need separate check for escaped characters in CriticMarkup parsing + + + +FIXED: compiling with older gcc and used c standard + + + +Merge pull request #61 from silvio/gcc–build–fix + + + +Merge pull request #64 from jasedit/feat/addversionfunction + + + +NOTE: Remove unnecessary includes + + + +UPDATED: Update libMultiMarkdown.h + + +UPDATED: Update mmd.c + + + 2017–05–02 - v 6.0.5: @@ -850,7 +935,7 @@ CHANGED: Recompile lexer using –8 flag CHANGED: Recompile scanners using –8 flag -FIXED: Don’t separate out 'à' +FIXED: Don’t separate out ‘à’ diff --git a/DevelopmentNotes/DevelopmentNotes.html b/DevelopmentNotes/DevelopmentNotes.html index 4a4feb4..1b9b8e7 100644 --- a/DevelopmentNotes/DevelopmentNotes.html +++ b/DevelopmentNotes/DevelopmentNotes.html @@ -4,7 +4,7 @@ MultiMarkdown v6 Development Notes - + @@ -429,6 +429,30 @@ more cross-platform approach than that used by MMDChangelog
    +
  • 2017–05–24 - v 6.0.6:

    + +
      +
    • ADDED: Add function for accessing library version
    • +
    • ADDED: Restructure superscript
    • +
    • CHANGED: Continue to refactor core API routines for clarity and flexibility
    • +
    • CHANGED: Don't strip list markers from nested list items
    • +
    • CHANGED: Extended ASCII support interferes with UTF–8 support – disable it
    • +
    • CHANGED: Fix style
    • +
    • CHANGED: Preserve closing Heading markers
    • +
    • CHANGED: Refactor CriticMarkup basic commands to be part of libMultiMarkdown.h
    • +
    • CHANGED: Refactor code for more consistent API naming in libMultiMarkdown.h; Add functionality to list metadata keys and extract specific metadata values
    • +
    • CHANGED: Refactor transclude_source to be part of main libMultiMarkdown.h
    • +
    • CHANGED: Restructure strong/emph to a nested structure
    • +
    • FIXED: Adjust CMake configuration for Linux to allow building with libcurl
    • +
    • FIXED: Fix regression in EPUB code refactoring
    • +
    • FIXED: Need separate check for escaped characters in CriticMarkup parsing
    • +
    • FIXED: compiling with older gcc and used c standard
    • +
    • Merge pull request #61 from silvio/gcc–build–fix
    • +
    • Merge pull request #64 from jasedit/feat/addversionfunction
    • +
    • NOTE: Remove unnecessary includes
    • +
    • UPDATED: Update libMultiMarkdown.h
    • +
    • UPDATED: Update mmd.c
    • +
  • 2017–05–02 - v 6.0.5:

      @@ -460,7 +484,7 @@ more cross-platform approach than that used by MMDADDED: Script for updating re2c and lemon files
    • CHANGED: Recompile lexer using –8 flag
    • CHANGED: Recompile scanners using –8 flag
    • -
    • FIXED: Don’t separate out 'à'
    • +
    • FIXED: Don’t separate out ‘à’
  • 2017–03–29 - v 6.0.2:

    diff --git a/DevelopmentNotes/DevelopmentNotes.pdf b/DevelopmentNotes/DevelopmentNotes.pdf index 28a53c5..86aa72a 100644 Binary files a/DevelopmentNotes/DevelopmentNotes.pdf and b/DevelopmentNotes/DevelopmentNotes.pdf differ diff --git a/DevelopmentNotes/DevelopmentNotes.txt b/DevelopmentNotes/DevelopmentNotes.txt index 3f530f6..7cd2858 100644 --- a/DevelopmentNotes/DevelopmentNotes.txt +++ b/DevelopmentNotes/DevelopmentNotes.txt @@ -1,6 +1,6 @@ Title: MultiMarkdown v6 Development Notes Author: Fletcher T. Penney -Date: 2017-03-28 +Date: 2017-05-24 LaTeX Config: tufte-handout Base Header Level: 3 uuid: dd2d8e76-dc2d-416d-9acd-5395d20871c2 @@ -466,6 +466,30 @@ more cross-platform approach than that used by MMD v5. # Changelog # +* 2017-05-24 - v 6.0.6: + + * ADDED: Add function for accessing library version + * ADDED: Restructure superscript + * CHANGED: Continue to refactor core API routines for clarity and flexibility + * CHANGED: Don't strip list markers from nested list items + * CHANGED: Extended ASCII support interferes with UTF-8 support -- disable it + * CHANGED: Fix style + * CHANGED: Preserve closing Heading markers + * CHANGED: Refactor CriticMarkup basic commands to be part of libMultiMarkdown.h + * CHANGED: Refactor code for more consistent API naming in libMultiMarkdown.h; Add functionality to list metadata keys and extract specific metadata values + * CHANGED: Refactor transclude_source to be part of main libMultiMarkdown.h + * CHANGED: Restructure strong/emph to a nested structure + * FIXED: Adjust CMake configuration for Linux to allow building with libcurl + * FIXED: Fix regression in EPUB code refactoring + * FIXED: Need separate check for escaped characters in CriticMarkup parsing + * FIXED: compiling with older gcc and used c standard + * Merge pull request #61 from silvio/gcc-build-fix + * Merge pull request #64 from jasedit/feat/add_version_function + * NOTE: Remove unnecessary includes + * UPDATED: Update libMultiMarkdown.h + * UPDATED: Update mmd.c + + * 2017-05-02 - v 6.0.5: * ADDED: Add back support for BibTeX bibliography entries (address #56) diff --git a/README.md b/README.md index 7df04be..d07c1c8 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ | ---------- | ------------------------- | | Title: | MultiMarkdown | | Author: | Fletcher T. Penney | -| Date: | 2017-05-02 | +| Date: | 2017-05-24 | | Copyright: | Copyright © 2016 - 2017 Fletcher T. Penney. | -| Version: | 6.0.5 | +| Version: | 6.0.6 | ## An Announcement! ##