chore(release): 1.0.0 [skip ci]

# 1.0.0 (2021-03-01)

### Bug Fixes

* **parsing:** allow usage of '@' in blocks ([827ca61](827ca613f2))

### Features

* initial release from fork ([094ad94](094ad94fa7))
* **aliases:** add markup alias for example parser ([8096a53](8096a533a9))
* **aliases:** add return alias for returns parser ([2f9b1dc](2f9b1dc1ef))
* **comments:** add support for JavaDoc blocks parsing ([3d13d87](3d13d87d61))
* **parse:** add next line key and type to the output object ([c90f944](c90f9446d4))
* **parsers:** add param and return parsers for JSDoc like data ([b46e7f3](b46e7f3abb))
* **parsers:** add several parsers ([3d5dec0](3d5dec011b))
* **parsers:** allow multi-line description comments ([e609609](e609609420))
* **parsers:** allow usage of multiple example annotations ([50de3f5](50de3f5094))
* **parsers:** extract multiline parser logic from markup ([64b991e](64b991e3bf))
* **parsers:** parse example type ([20d2478](20d2478e7b))
* **parsers:** use latest JSDoc syntax for param and returs annotations ([36203e3](36203e3fef))
* **parsing:** allow parsing description without annotation ([99e711f](99e711f1a3))
* **parsing:** use triple slash single line comments ([081d1fc](081d1fc62b))
This commit is contained in:
semantic-release-bot 2021-03-01 14:02:19 +00:00
Родитель 094ad94fa7
Коммит 2f51e06a5a
3 изменённых файлов: 26 добавлений и 2 удалений

24
CHANGELOG.md Normal file
Просмотреть файл

@ -0,0 +1,24 @@
# 1.0.0 (2021-03-01)
### Bug Fixes
* **parsing:** allow usage of '@' in blocks ([827ca61](https://github.com/telerik/dss/commit/827ca613f2779a937bebb1d5bd0a10f62ed438d4))
### Features
* initial release from fork ([094ad94](https://github.com/telerik/dss/commit/094ad94fa7f6a40ec413bc2ff062bde4d0426ab9))
* **aliases:** add markup alias for example parser ([8096a53](https://github.com/telerik/dss/commit/8096a533a9eba7aa2fedf305baf040b2b38ec427))
* **aliases:** add return alias for returns parser ([2f9b1dc](https://github.com/telerik/dss/commit/2f9b1dc1efd1a31b81eee8ea3e716b76b79cc0bd))
* **comments:** add support for JavaDoc blocks parsing ([3d13d87](https://github.com/telerik/dss/commit/3d13d87d61cef4a88ef118e50794366cd83a33b8))
* **parse:** add next line key and type to the output object ([c90f944](https://github.com/telerik/dss/commit/c90f9446d444f065dd298f8cddd0adc9685c9cf7))
* **parsers:** add param and return parsers for JSDoc like data ([b46e7f3](https://github.com/telerik/dss/commit/b46e7f3abbdd66e7b04651ef6dd8166faf209519))
* **parsers:** add several parsers ([3d5dec0](https://github.com/telerik/dss/commit/3d5dec011bb2fab30812bf06dbbcb6c06fe68a3c))
* **parsers:** allow multi-line description comments ([e609609](https://github.com/telerik/dss/commit/e609609420a378f8ad688781afc25974b175633c))
* **parsers:** allow usage of multiple example annotations ([50de3f5](https://github.com/telerik/dss/commit/50de3f5094e1886cd36ada33c72e383af7bad2dc))
* **parsers:** extract multiline parser logic from markup ([64b991e](https://github.com/telerik/dss/commit/64b991e3bf579a3ca4f379adde977cbd52028ae9))
* **parsers:** parse example type ([20d2478](https://github.com/telerik/dss/commit/20d2478e7b0958991cbbff3b39465de82291ac7d))
* **parsers:** use latest JSDoc syntax for param and returs annotations ([36203e3](https://github.com/telerik/dss/commit/36203e3feff0cb2b5be447695935ba107bd81266))
* **parsing:** allow parsing description without annotation ([99e711f](https://github.com/telerik/dss/commit/99e711f1a3e6c77077f2c9703b293cd255423b85))
* **parsing:** use triple slash single line comments ([081d1fc](https://github.com/telerik/dss/commit/081d1fc62b78d5e5740c9b4349cba6f2db83db46))

2
package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@progress/dss",
"version": "0.0.0-development",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "@progress/dss",
"description": "Documented Style Sheets",
"version": "0.0.0-development",
"version": "1.0.0",
"homepage": "https://github.com/telerik/dss",
"author": "Progress",
"license": "Apache-2.0",