diff --git a/CHANGELOG.md b/CHANGELOG.md index 760b02f..84e4520 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.3.32](https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v0.3.31...v0.3.32) (2022-03-24) + + +### Features + +* add rollup script for compile to mjs ([8783637](https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/8783637eb3da7abd6fedc5c4c032028f82f30670)) +* support block quote ([db0b07e](https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/db0b07ecfeb862b9b6510e8dd1896c638ca1aaef)) + + +### Bug Fixes + +* optional type without name ([b14397c](https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/b14397c6e0a2e310172f12b7bc8f0efbbdf8ebdd)) +* tag [@file](https://github.com/file) capitalization ([dc76b72](https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/dc76b72a8e2f8b9c5e1c71d7f614563fa107de11)), closes [/github.com/hosseinmd/prettier-plugin-jsdoc/issues/143#issuecomment-1014096745](https://github.com/hosseinmd//github.com/hosseinmd/prettier-plugin-jsdoc/issues/143/issues/issuecomment-1014096745) + ### [0.3.31](https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v0.3.30...v0.3.31) (2022-03-12) diff --git a/package.json b/package.json index 77fa0d7..141dec4 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "prettier-plugin-jsdoc", - "version": "0.3.31", + "version": "0.3.32", "description": "A Prettier plugin to format JSDoc comments.", "private": false, "workspaces": { @@ -17,7 +17,7 @@ "prepare": "yarn build", "lint": "eslint --ext '.ts' ./src", "test": "yarn prepare && jest", - "release": "standard-version && npm publish", + "release": "standard-version && yarn publish", "prettierAll": "prettier --write \"**/*.ts\"", "clean": "rm -fr dist", "build": "npm run clean && npm run lint && tsc --project tsconfig.json && npm run bundle:esm && npm run bundle:esm:min && npm run bundle:umd && npm run bundle:umd:min && npm run build:stats && tsc --project tsconfig.json --module commonjs",