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

Commit

Permalink
feat: Prepare 1.0.0 vesion
Browse files Browse the repository at this point in the history
  • Loading branch information
hason committed Jul 9, 2019
1 parent d317299 commit 93a3fd9
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
@@ -1,11 +1,12 @@
CHANGELOG
=========

0.10.0 (2019-xx-xx)
1.0.0 (2019-07-09)
-------------------

* Increased minimum PHP version to 7.1
* Removed support for commonmark 0.16
* Updated to the commonmark 0.19 and 1.0
* Removed support for commonmark 0.16, 0.17 and 0.18

0.9.0 (2018-11-28)
------------------
Expand Down
9 changes: 9 additions & 0 deletions README.md
Expand Up @@ -110,3 +110,12 @@ Result:
</table>
<table>
```

Development
-----------

You need to have *php* or *docker* installed to develop the library. To list all available commands run:

```bash
./run
```
7 changes: 5 additions & 2 deletions composer.json
Expand Up @@ -17,7 +17,7 @@
],
"require": {
"php": "^7.1",
"league/commonmark": "~0.19|^1.0"
"league/commonmark": "~0.19.3|^1.0"
},
"require-dev": {
"phpstan/phpstan": "~0.11",
Expand All @@ -31,9 +31,12 @@
"Webuni\\CommonMark\\TableExtension\\": "src"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "0.10-dev"
"dev-master": "1.0-dev"
}
}
}
5 changes: 5 additions & 0 deletions run
Expand Up @@ -16,6 +16,11 @@ _decorator()(
fi
)

# Install dependencies
task_deps()(
composer install
)

# Static analyse
task_analyse()(
./vendor/bin/phpstan analyse -l7 src "$@"
Expand Down

0 comments on commit 93a3fd9

Please sign in to comment.