From eea203528429d8243fb521154476f0a6a5d5e48d Mon Sep 17 00:00:00 2001 From: Ioan CHIRIAC Date: Mon, 9 Jan 2017 00:35:55 +0100 Subject: [PATCH] -> v0.3.0 --- CHANGELOG.md | 38 ++++++++++++++++++++++++++++++++++++++ package.json | 9 ++++++--- 2 files changed, 44 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 996b498..53784b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,41 @@ +## [Version 0.3.0](https://github.com/glayzzle/docblock-parser/releases/tag/v0.3.0) (2017-1-9) + +### Major Changes + +- rewrite parser structure (xo++): [`edda0c4`](https://github.com/glayzzle/docblock-parser/commit/edda0c4) +- start to define generic parsers for grammar: [`ffbe9c3`](https://github.com/glayzzle/docblock-parser/commit/ffbe9c3) +- rename package: [`6b01724`](https://github.com/glayzzle/docblock-parser/commit/6b01724) +- implement type, text & tests: [`7ff0b34`](https://github.com/glayzzle/docblock-parser/commit/7ff0b34) + +### Minor Changes + +- fix xo on tests: [`ddde5f8`](https://github.com/glayzzle/docblock-parser/commit/ddde5f8) +- extract summary: [`1134c84`](https://github.com/glayzzle/docblock-parser/commit/1134c84) +- add a backup function & implement float numbers: [`0802ad5`](https://github.com/glayzzle/docblock-parser/commit/0802ad5) +- add new symbols: [`6216fe0`](https://github.com/glayzzle/docblock-parser/commit/6216fe0) +- implement the variable reader: [`cf2eb94`](https://github.com/glayzzle/docblock-parser/commit/cf2eb94) +- implement semver parser & deprecated block + test: [`afedeff`](https://github.com/glayzzle/docblock-parser/commit/afedeff) +- implement object parsing: [`9861453`](https://github.com/glayzzle/docblock-parser/commit/9861453) + +### Patches + +- beautify: [`caa80e6`](https://github.com/glayzzle/docblock-parser/commit/caa80e6) +- improve tests: [`2c8e479`](https://github.com/glayzzle/docblock-parser/commit/2c8e479) +- fix lexer & cover with tests: [`0356720`](https://github.com/glayzzle/docblock-parser/commit/0356720) +- fix tests: [`1064114`](https://github.com/glayzzle/docblock-parser/commit/1064114) +- update badges: [`060206d`](https://github.com/glayzzle/docblock-parser/commit/060206d) +- update badges: [`2d2422e`](https://github.com/glayzzle/docblock-parser/commit/2d2422e) +- update coveralls token: [`6cd7ba1`](https://github.com/glayzzle/docblock-parser/commit/6cd7ba1) +- up nodejs version: [`6677f79`](https://github.com/glayzzle/docblock-parser/commit/6677f79) +- fix the backup state reverse: [`ca58ab2`](https://github.com/glayzzle/docblock-parser/commit/ca58ab2) +- improve the documentation: [`a676169`](https://github.com/glayzzle/docblock-parser/commit/a676169) +- fix point symbol / tests: [`897be4d`](https://github.com/glayzzle/docblock-parser/commit/897be4d) +- rewrite next token eating: [`547b20f`](https://github.com/glayzzle/docblock-parser/commit/547b20f) +- improve tests & fix array parsing: [`ecbe333`](https://github.com/glayzzle/docblock-parser/commit/ecbe333) +- fix type parser & improve coverage: [`f17d295`](https://github.com/glayzzle/docblock-parser/commit/f17d295) + +[...full changes](https://github.com/glayzzle/docblock-parser/compare/v0.2.2...v0.3.0) + ## [Version 0.2.2](https://github.com/glayzzle/docblock-parser/releases/tag/v0.2.2) (2017-1-5) ### Patches diff --git a/package.json b/package.json index b2db6e7..523ee1f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "doc-parser", - "version": "0.2.2", + "version": "0.3.0", "description": "Parses docblocks comments", "main": "src/index.js", "scripts": { @@ -16,7 +16,10 @@ "overrides": [ { "files": "test/*.js", - "envs": ["node", "mocha"] + "envs": [ + "node", + "mocha" + ] } ] }, @@ -45,4 +48,4 @@ "should": "^11.1.2", "xo": "^0.17.1" } -} +} \ No newline at end of file