Skip to content

Commit

Permalink
chore(release): v0.0.27
Browse files Browse the repository at this point in the history
  • Loading branch information
as-op committed Jun 11, 2024
1 parent 4770ea7 commit 8772c79
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 27 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,13 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- name: Run rspec
run: bundle exec rspec
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- name: Run rubocop
run: bundle exec rubocop
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## [Unreleased]

## [0.0.27] - 2024-06-11

- fix(tables): better image handling in table autosizing
- fix(tables): better image handling in table cells

## [0.0.26] - 2024-02-15

- fix(tasklists): support nested tasklists and tasklist items with or without any text
Expand Down
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ gemspec

group :development, :test do
gem 'pdf-inspector', '~> 1.3'
gem 'rake', '~> 13.1'
gem 'rspec', '~> 3.12'
gem 'rubocop', '~> 1.59'
gem 'rake', '~> 13.2'
gem 'rspec', '~> 3.1'
gem 'rubocop', '~> 1.6'
gem 'rubocop-rake', '~> 0.6'
gem 'rubocop-rspec', '~> 2.26'
gem 'rubocop-rspec', '~> 2.3'
end
22 changes: 11 additions & 11 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
PATH
remote: .
specs:
md_to_pdf (0.0.26)
md_to_pdf (0.0.27)
color_conversion (~> 0.1)
front_matter_parser (~> 1.0)
json-schema (~> 4.1)
json-schema (~> 4.3)
markly (~> 0.10)
matrix (~> 0.4)
nokogiri (~> 1.1)
Expand All @@ -25,13 +25,13 @@ GEM
front_matter_parser (1.0.1)
hashery (2.1.2)
json (2.7.1)
json-schema (4.1.1)
json-schema (4.3.0)
addressable (>= 2.8)
language_server-protocol (3.17.0.3)
markly (0.10.0)
matrix (0.4.2)
mini_portile2 (2.8.5)
nokogiri (1.16.2)
mini_portile2 (2.8.7)
nokogiri (1.16.5)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
parallel (1.24.0)
Expand All @@ -52,10 +52,10 @@ GEM
ttfunk (~> 1.7)
prawn-table (0.2.2)
prawn (>= 1.3.0, < 3.0.0)
public_suffix (5.0.4)
public_suffix (5.0.5)
racc (1.7.3)
rainbow (3.1.1)
rake (13.1.0)
rake (13.2.1)
regexp_parser (2.9.0)
rexml (3.2.6)
rspec (3.13.0)
Expand Down Expand Up @@ -110,11 +110,11 @@ PLATFORMS
DEPENDENCIES
md_to_pdf!
pdf-inspector (~> 1.3)
rake (~> 13.1)
rspec (~> 3.12)
rubocop (~> 1.59)
rake (~> 13.2)
rspec (~> 3.1)
rubocop (~> 1.6)
rubocop-rake (~> 0.6)
rubocop-rspec (~> 2.26)
rubocop-rspec (~> 2.3)

BUNDLED WITH
2.3.13
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.26'
VERSION = '0.0.27'
end
2 changes: 1 addition & 1 deletion md_to_pdf.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |s|

s.add_runtime_dependency "color_conversion", ["~> 0.1"]
s.add_runtime_dependency "front_matter_parser", ["~> 1.0"]
s.add_runtime_dependency "json-schema", ["~> 4.1"]
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"]
Expand Down

0 comments on commit 8772c79

Please sign in to comment.