Skip to content

Commit

Permalink
-> v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ichiriac committed Jan 8, 2017
1 parent 683b217 commit eea2035
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 3 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "doc-parser",
"version": "0.2.2",
"version": "0.3.0",
"description": "Parses docblocks comments",
"main": "src/index.js",
"scripts": {
Expand All @@ -16,7 +16,10 @@
"overrides": [
{
"files": "test/*.js",
"envs": ["node", "mocha"]
"envs": [
"node",
"mocha"
]
}
]
},
Expand Down Expand Up @@ -45,4 +48,4 @@
"should": "^11.1.2",
"xo": "^0.17.1"
}
}
}

0 comments on commit eea2035

Please sign in to comment.