diff --git a/CHANGELOG.md b/CHANGELOG.md index 79e3e99..46e008e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## 0.30.0 - 2024-05-XX +## 0.30.0 - 2024-05-01 - Add support for task lists - Add support for compiler configuration diff --git a/package-lock.json b/package-lock.json index 379755c..63238f9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "markdown-to-document", - "version": "0.29.0", + "version": "0.30.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "markdown-to-document", - "version": "0.29.0", + "version": "0.30.0", "license": "GPL-3.0-or-later", "dependencies": { "chokidar": "^3.6.0", diff --git a/package.json b/package.json index 24efcea..15eaeab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "markdown-to-document", - "version": "0.29.0", + "version": "0.30.0", "description": "A command-line tool to easily generate HTML documents from Markdown files", "keywords": [ "markdown", diff --git a/src/cli.js b/src/cli.js index 01ed423..5d60711 100644 --- a/src/cli.js +++ b/src/cli.js @@ -6,7 +6,7 @@ import { Processor } from "./processor.js"; program .name("mdtodoc") - .version("0.29.0") + .version("0.30.0") .arguments("") .description("Compile Markdown files into HTML documents") .option("-d, --dest [value]", "destination path (default: next to .md files)")