Skip to content

Commit

Permalink
chore(release): v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
as-op committed Jun 24, 2024
1 parent e48ccb9 commit f522be9
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
## [Unreleased]

## [0.1.0] - 2024-06-24

- feat: add support for mermaid diagrams if [mermaid-cli](https://github.com/mermaid-js/mermaid-cli) is installed and available in the PATH
- feat: add support for Github alert blockquotes

BREAKING:

- styles now require a ˚alerts˚ key with settings for the alert blockquotes (see [docs/STYLING.md](docs/STYLING.md#alert-boxes-styled-blockquotes))
- command line tool parameters have been fixed to match the documentation
- Module users need to implement mermaid_cli_enabled? and return true to enable mermaid diagrams

## [0.0.27] - 2024-06-11

- fix(tables): better image handling in table autosizing
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
PATH
remote: .
specs:
md_to_pdf (0.0.27)
md_to_pdf (0.1.0)
color_conversion (~> 0.1)
front_matter_parser (~> 1.0)
json-schema (~> 4.3)
markly (~> 0.10)
matrix (~> 0.4)
nokogiri (~> 1.1)
nokogiri (~> 1.16)
prawn (~> 2.4)
prawn-table (~> 0.2)
text-hyphen (~> 1.5)
Expand Down
2 changes: 1 addition & 1 deletion docs/STYLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -949,4 +949,4 @@ available units are

`in` - Inch, `ft` - Feet, `yr` - Yard

`pt` - [Postscript point](https://en.wikipedia.org/wiki/Point_(typography)#Desktop_publishing_point) (default if no unit is used)
`pt` - [Postscript point](https://en.wikipedia.org/wiki/Point_(typography)#Desktop_publishing_point) (default if no unit is used)
2 changes: 1 addition & 1 deletion lib/md_to_pdf/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module MarkdownToPDF
VERSION = '0.0.27'
VERSION = '0.1.0'
end
2 changes: 1 addition & 1 deletion md_to_pdf.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency "json-schema", ["~> 4.3"]
s.add_runtime_dependency "markly", ["~> 0.10"]
s.add_runtime_dependency "matrix", ["~> 0.4"]
s.add_runtime_dependency "nokogiri", ["~> 1.1"]
s.add_runtime_dependency "nokogiri", ["~> 1.16"]
s.add_runtime_dependency "prawn", ["~> 2.4"]
s.add_runtime_dependency "prawn-table", ["~> 0.2"]
s.add_runtime_dependency "text-hyphen", ["~> 1.5"]
Expand Down

0 comments on commit f522be9

Please sign in to comment.