diff --git a/API-0.2.0 b/API-0.2.0 deleted file mode 100644 index bfdb306..0000000 --- a/API-0.2.0 +++ /dev/null @@ -1 +0,0 @@ -- Completely different interface from version 0.1.0. diff --git a/API-1.0.0 b/API-1.0.0 new file mode 100644 index 0000000..1a5390b --- /dev/null +++ b/API-1.0.0 @@ -0,0 +1 @@ +- Added MarkdownDocument::setReferencePrefix() method. diff --git a/CREDITS b/CREDITS index 4985516..122445d 100644 --- a/CREDITS +++ b/CREDITS @@ -1,2 +1,3 @@ -discount -Gustavo Lopes, Pierre A. Joye +;; discount +Gustavo Lopes [cataphract] (lead) +Pierre-Alain Joye [pajoye] (lead) diff --git a/RELEASE-0.2.0 b/RELEASE-0.2.0 deleted file mode 100644 index 46ff9a2..0000000 --- a/RELEASE-0.2.0 +++ /dev/null @@ -1,4 +0,0 @@ -- Completely new codebase. -- More recent and tightly coupled discount library. -- Much richer interface. -- Interface incompatible with PECL markdown 0.1.0. diff --git a/RELEASE-1.0.0 b/RELEASE-1.0.0 new file mode 100644 index 0000000..8a37927 --- /dev/null +++ b/RELEASE-1.0.0 @@ -0,0 +1,2 @@ +- Updated to post 2.1.3 discount version (commit 6eacbc931b) +- Added MarkdownDocument::setReferencePrefix() method. diff --git a/markdowndoc_class.c b/markdowndoc_class.c index 0ca38b6..947b19c 100644 --- a/markdowndoc_class.c +++ b/markdowndoc_class.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/markdowndoc_class.h b/markdowndoc_class.h index 2ea51a9..a3017b5 100644 --- a/markdowndoc_class.h +++ b/markdowndoc_class.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/markdowndoc_meth_callbacks.c b/markdowndoc_meth_callbacks.c index 524ffff..1f583d1 100644 --- a/markdowndoc_meth_callbacks.c +++ b/markdowndoc_meth_callbacks.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/markdowndoc_meth_callbacks.h b/markdowndoc_meth_callbacks.h index f272bb5..e1d7288 100644 --- a/markdowndoc_meth_callbacks.h +++ b/markdowndoc_meth_callbacks.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/markdowndoc_meth_document.c b/markdowndoc_meth_document.c index 09cc496..3b010b0 100644 --- a/markdowndoc_meth_document.c +++ b/markdowndoc_meth_document.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/markdowndoc_meth_document.h b/markdowndoc_meth_document.h index 357941d..cbd2177 100644 --- a/markdowndoc_meth_document.h +++ b/markdowndoc_meth_document.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/markdowndoc_meth_header.c b/markdowndoc_meth_header.c index 27bff05..18c7e88 100644 --- a/markdowndoc_meth_header.c +++ b/markdowndoc_meth_header.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/markdowndoc_meth_header.h b/markdowndoc_meth_header.h index 5154fc6..963b718 100644 --- a/markdowndoc_meth_header.h +++ b/markdowndoc_meth_header.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/markdowndoc_meth_input.c b/markdowndoc_meth_input.c index 27186ac..8717280 100644 --- a/markdowndoc_meth_input.c +++ b/markdowndoc_meth_input.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/markdowndoc_meth_input.h b/markdowndoc_meth_input.h index 37c131b..25dff47 100644 --- a/markdowndoc_meth_input.h +++ b/markdowndoc_meth_input.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/markdowndoc_meth_misc.c b/markdowndoc_meth_misc.c index 6317c14..86c3185 100644 --- a/markdowndoc_meth_misc.c +++ b/markdowndoc_meth_misc.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/markdowndoc_meth_misc.h b/markdowndoc_meth_misc.h index effd517..88d40d8 100644 --- a/markdowndoc_meth_misc.h +++ b/markdowndoc_meth_misc.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/markdowndoc_meth_parts.c b/markdowndoc_meth_parts.c index 475b029..ec67c42 100644 --- a/markdowndoc_meth_parts.c +++ b/markdowndoc_meth_parts.c @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/markdowndoc_meth_parts.h b/markdowndoc_meth_parts.h index effbfe0..9738f2a 100644 --- a/markdowndoc_meth_parts.h +++ b/markdowndoc_meth_parts.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/package.xml b/package.xml index 1f1e78d..c0724ea 100644 --- a/package.xml +++ b/package.xml @@ -30,27 +30,25 @@ The page of the original Markdown is available at cataphract@php.net yes - + Pierre-Alain Joye pajoye - pierre@php.net - yes - - 2011-01-11 - + pierre.php@gmail.com + no + + 2012-02-20 + - 0.2.0 - 0.1.0 + 1.0.0 + 1.0.0 - alpha - alpha + stable + stable New BSD License - - Completely new codebase. -- More recent and tightly coupled discount library. -- Much richer interface. -- Interface incompatible with PECL markdown 0.1.0. + - Updated to post 2.1.3 discount version (commit 6eacbc931b) +- Added MarkdownDocument::setReferencePrefix() method. @@ -86,6 +84,7 @@ The page of the original Markdown is available at + @@ -120,6 +119,7 @@ The page of the original Markdown is available at + @@ -147,8 +147,12 @@ The page of the original Markdown is available at + + + + diff --git a/php_discount.h b/php_discount.h index 7be1fc5..89a89f2 100644 --- a/php_discount.h +++ b/php_discount.h @@ -1,5 +1,5 @@ /* -* Copyright (c) 2011, Gustavo Lopes +* Copyright (c) 2012, Gustavo Lopes * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -33,7 +33,7 @@ extern zend_module_entry discount_module_entry; #define phpext_discount_ptr &discount_module_entry -#define PHP_DISCOUNT_VERSION "1.0.0-dev" +#define PHP_DISCOUNT_VERSION "1.0.0" #ifdef PHP_WIN32 #define PHP_DISCOUNT_API __declspec(dllexport) diff --git a/tests/defects.t b/tests/defects.t deleted file mode 100644 index 9aaa84d..0000000 --- a/tests/defects.t +++ /dev/null @@ -1,17 +0,0 @@ -. tests/functions.sh - -title "reported defects" - -rc=0 -MARKDOWN_FLAGS= - -try 'masses of non-block html' \ -'foo
-
-bar
' \ -'

foo
-
-bar

' - -summary $0 -exit $rc