Skip to content

Commit

Permalink
* bumped up 0.3.6
Browse files Browse the repository at this point in the history
        now, php-sundown is able to use under windows box.
        Thank you stealth35!

        * prettify phpinfo, add ext and sundown version
        * windows support
        * fix several compile warnings

        [removed constants]:
        Sundown\Render\MKDA_NORMAL
        Sundown\Render\MKDA_EMAIL

        [added constants]:
        Sundown\Render::MKDA_NORMAL
        Sundown\Render::MKDA_EMAIL
  • Loading branch information
chobie committed Jun 2, 2012
1 parent b8ac4d3 commit 562d4ca
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 10 deletions.
20 changes: 20 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
2012-06-02 Shuhei Tanuma <[email protected]>

* bumped up 0.3.6

now, php-sundown is able to use under windows box.
Thank you stealth35!

* prettify phpinfo, add ext and sundown version
* windows support
* fix several compile warnings

[removed constants]:
Sundown\Render\MKDA_NORMAL
Sundown\Render\MKDA_EMAIL

[added constants]:
Sundown\Render::MKDA_NORMAL
Sundown\Render::MKDA_EMAIL


2012-05-17 Shuhei Tanuma <[email protected]>

* bumped up 0.3.5
Expand Down
48 changes: 39 additions & 9 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,33 @@ PECL Sundown provides straight forward object oriented Markdown API and customiz
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2012-05-16</date>
<date>2012-06-02</date>
<version>
<release>0.3.5</release>
<api>0.3.5</api>
<release>0.3.6</release>
<api>0.3.6</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
* bumped up 0.3.5
* bumped up 0.3.6

fix #19 Autolink is broken for emails
now, php-sundown is able to use under windows box.
Thank you stealth35!

[added constants]:
* prettify phpinfo, add ext and sundown version
* windows support
* fix several compile warnings

[removed constants]:
Sundown\Render\MKDA_NORMAL
Sundown\Render\MKDA_EMAIL

[changed signature]:
Sundown\Render\Base::autolink(string$link, int $type)
type should be Sundown\Render\MKDA_NORMAL or Sundown\Render\MKDA_EMAIL
[added constants]:
Sundown\Render::MKDA_NORMAL
Sundown\Render::MKDA_EMAIL
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -83,6 +88,7 @@ Sundown\Render\Base::autolink(string$link, int $type)
<file role="test" name="005-render-xhtml.phpt" />
<file role="test" name="006-render-custom-codeblock.phpt" />
<file role="test" name="999-regression-no12.phpt" />
<file role="test" name="999-regression-no19.phpt" />
</dir>
<dir name="docs">
<file role="doc" name="ExtensionsAndRenderFlags.md" />
Expand Down Expand Up @@ -127,6 +133,30 @@ Sundown\Render\Base::autolink(string$link, int $type)
<providesextension>sundown</providesextension>
<extsrcrelease/>
<changelog>
<release>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<version>
<release>0.3.5</release>
<api>0.3.5</api>
</version>
<date>2012-05-17</date>
<notes>
* bumped up 0.3.5

fix #19 Autolink is broken for emails

[added constants]:
Sundown\Render\MKDA_NORMAL
Sundown\Render\MKDA_EMAIL

[changed signature]:
Sundown\Render\Base::autolink(string$link, int $type)
type should be Sundown\Render\MKDA_NORMAL or Sundown\Render\MKDA_EMAIL
</notes>
</release>
<release>
<stability>
<release>beta</release>
Expand Down
2 changes: 1 addition & 1 deletion php_sundown.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define PHP_SUNDOWN_H

#define PHP_SUNDOWN_EXTNAME "sundown"
#define PHP_SUNDOWN_EXTVER "0.3.6-dev"
#define PHP_SUNDOWN_EXTVER "0.3.6"

#ifdef HAVE_CONFIG_H
#include "config.h"
Expand Down

0 comments on commit 562d4ca

Please sign in to comment.