Skip to content
This repository has been archived by the owner on Apr 4, 2020. It is now read-only.

Commit

Permalink
Prepare to release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
colinodell committed Apr 11, 2019
1 parent c469584 commit 7ce166e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
@@ -1,8 +1,6 @@
language: php

php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Expand Up @@ -4,6 +4,12 @@ All Notable changes to `commonmark-extras` will be documented in this file

## [Unreleased][unreleased]

## [0.3.0] - 2019-04-10

### Changed

- Made this extension compatible with `league/commonmark` 0.19

## [0.2.1] - 2019-03-16

### Added
Expand Down Expand Up @@ -62,7 +68,8 @@ All Notable changes to `commonmark-extras` will be documented in this file
### Changed
- Minor refactoring to SmartPunct's `QuoteParser` to reduce complexity

[unreleased]: https://github.com/thephpleague/commonmark-extras/compare/0.2.1...HEAD
[unreleased]: https://github.com/thephpleague/commonmark-extras/compare/0.3.0...HEAD
[0.3.0]: https://github.com/thephpleague/commonmark-extras/compare/0.2.1...0.3.0
[0.2.1]: https://github.com/thephpleague/commonmark-extras/compare/0.2.0...0.2.1
[0.2.0]: https://github.com/thephpleague/commonmark-extras/compare/0.1.4...0.2.0
[0.1.5]: https://github.com/thephpleague/commonmark-extras/compare/0.1.4...0.1.5
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Expand Up @@ -14,13 +14,13 @@
}
],
"require": {
"php" : ">=5.6",
"league/commonmark": "^0.18.1",
"league/commonmark-ext-smartpunct": "^0.1",
"league/commonmark-ext-autolink": "^0.1||^0.2"
"php" : "^7.1",
"league/commonmark": "^0.19",
"league/commonmark-ext-smartpunct": "^0.2",
"league/commonmark-ext-autolink": "^0.3"
},
"require-dev": {
"phpunit/phpunit" : "^5.7"
"phpunit/phpunit" : "^7.5"
},
"autoload": {
"psr-4": {
Expand All @@ -37,7 +37,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "0.3-dev"
"dev-master": "0.4-dev"
}
}
}
7 changes: 2 additions & 5 deletions phpunit.xml.dist
Expand Up @@ -16,14 +16,11 @@
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="tap" target="build/report.tap"/>
<log type="junit" target="build/report.junit.xml"/>
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
<log type="coverage-html" target="build/coverage"/>
<log type="coverage-text" target="build/coverage.txt"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>

0 comments on commit 7ce166e

Please sign in to comment.