Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
fletcher committed Feb 23, 2016
1 parent f6bfadb commit dbb943d
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 6 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
# MultiMarkdown Change Log #


## [5.1.0] - 2016-02-22 ##

* ADDED: Add script to build drag and drop apps on OS X
* ADDED: Beginning code for public header file support; ADDED: Beginning configuration for OS X Bundle/Framework targets
* ADDED: Include support for Xcode libraries to be iOS compatible
* CHANGED: Update copyright info for 2016
* CHANGED: Update test suite
* FIXED: Allow ATX Headers inside lists
* FIXED: Allow 'naturally' aligned table cells like MMD 2 allowed
* FIXED: Allow metadata variables inside links (e.g. [[%foo]][bar])
* FIXED: Allow newline inside strong/emph (Fixes #10)
* FIXED: Change handling of version.h file for deprecated make to keep it separate from cmake alternative
* FIXED: Don't delete src/version.h
* FIXED: Fix problem with strong/emph matching incorrectly
* FIXED: Fix regression in list/heading fix that was overeager
* FIXED: Include 'fake' version.h for make deprecate
* FIXED: Include additional standard metadata keys in the list to *not* be included in HTML headers
* FIXED: Remove unneeded install directive; FIXED: Fix public header install prefix (I think)
* FIXED: Update MMD test suite for recent table alignment change
* FIXED: fix 'make deprecate' so that it truly doesn't require cmake
* FIXED: Improve tight vs loose list detection with unusual setext headers
* NOTE: Fixed git clone instructions in documentation
* NOTE: Update test suite


## [5.0.1] - 2015-12-01 ##

* IMPORTANT: Fix major error in last Makefile! (Only in build branch for a few minutes)
Expand Down Expand Up @@ -54,3 +79,4 @@

[5.0.0]: https://github.com/fletcher/MultiMarkdown-5/releases/tag/5.0
[5.0.1]: https://github.com/fletcher/MultiMarkdown-5/releases/tag/5.0.1
[5.1.0]: https://github.com/fletcher/MultiMarkdown-5/releases/tag/5.1.0
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ cmake_minimum_required (VERSION 2.6)
set (My_Project_Title "MultiMarkdown")
set (My_Project_Description "MultiMarkdown - lightweight markup processor")
set (My_Project_Author "Fletcher T. Penney")
set (My_Project_Revised_Date "2015-12-01")
set (My_Project_Revised_Date "2016-02-22")
set (My_Project_Version_Major 5)
set (My_Project_Version_Minor 0)
set (My_Project_Version_Patch 1)
set (My_Project_Version_Minor 1)
set (My_Project_Version_Patch 0)

set (My_Project_Version "${My_Project_Version_Major}.${My_Project_Version_Minor}.${My_Project_Version_Patch}")

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
| ---------- | ------------------------- |
| Title: | MultiMarkdown |
| Author: | Fletcher T. Penney |
| Date: | 2015-12-01 |
| Date: | 2016-02-22 |
| Copyright: | Copyright © 2013-2016 Fletcher T. Penney. |
| Version: | 5.0.1 |
| Version: | 5.1.0 |


## Introduction ##
Expand Down
2 changes: 1 addition & 1 deletion tools/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@
#ifndef FILE_MULTIMARKDOWN_VERSION_H
#define FILE_MULTIMARKDOWN_VERSION_H

#define MULTIMARKDOWN_VERSION "5.0-dep"
#define MULTIMARKDOWN_VERSION "5.1.0-dep"

#endif

0 comments on commit dbb943d

Please sign in to comment.