Skip to content

Commit

Permalink
Merge tag '0.29.0' into develop
Browse files Browse the repository at this point in the history
0.29.0
  • Loading branch information
GaelGirodon committed Aug 29, 2023
2 parents 87a9f71 + 28858d9 commit c50a9f2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file.

## 0.29.0 - 2023-08-29

- Reduce package install size
- Migrate from ejs to neat-ejs
- Migrate from glob to fast-glob
- Replace axios with Node HTTP client
- Replace cheerio with an internal function
- Improve code, tests and documentation
- Migrate CI to GitHub Actions
- Rename main branch
- Update dependencies

## 0.28.0 - 2023-07-21

- Update dependencies
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "markdown-to-document",
"version": "0.28.0",
"version": "0.29.0",
"description": "A command-line tool to easily generate HTML documents from Markdown files",
"keywords": [
"markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Processor } from "./processor.js";

program
.name("mdtodoc")
.version("0.28.0")
.version("0.29.0")
.arguments("<path...>")
.description("Compile Markdown files into HTML documents")
.option("-d, --dest [value]", "destination path (default: next to .md files)")
Expand Down

0 comments on commit c50a9f2

Please sign in to comment.