Skip to content

Commit c1ed31d

Browse files
committed
Add support for pandoc 3.5 (#89)
1 parent d768c30 commit c1ed31d

File tree

7 files changed

+10
-69
lines changed

7 files changed

+10
-69
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM ruby:3.3
22
ENV LANG C.UTF-8
33
RUN apt-get update \
44
; apt-get install -y wget texlive-base \
5-
; wget -q https://github.com/jgm/pandoc/releases/download/3.4/pandoc-3.4-1-amd64.deb \
6-
; apt-get install ./pandoc-3.4-1-amd64.deb \
5+
; wget -q https://github.com/jgm/pandoc/releases/download/3.5/pandoc-3.5-1-amd64.deb \
6+
; apt-get install ./pandoc-3.5-1-amd64.deb \
77
; useradd -ms /bin/bash paru-user
88
USER paru-user
99
SHELL ["/bin/bash", "-l", "-c"]

Gemfile.lock

-63
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ running the following commands:
7676
cd /path/to/paru/repository
7777
bundle install
7878
rake build
79-
gem install pkg/paru-1.4.0.gem
79+
gem install pkg/paru-1.4.1.gem
8080
```
8181

8282
Paru, obviously, requires pandoc. See

index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ running the following commands:
5252
cd /path/to/paru/repository
5353
bundle install
5454
rake build
55-
gem install pkg/paru-1.4.0.gem
55+
gem install pkg/paru-1.4.1.gem
5656
```
5757

5858
Paru, obviously, requires pandoc. See

lib/paru.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
#++
1919
module Paru
2020
# Paru's current version
21-
VERSION = [1, 4, 0].freeze
21+
VERSION = [1, 4, 1].freeze
2222
end

lib/paru/pandoc_options.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ columns: 78
7575
toc: true
7676
table_of_contents: true
7777
toc_depth: 3
78+
lof: true
79+
list_of_figures: true
80+
lot: true
81+
list_of_tables: true
7882
strip_comments: true
7983
no_highlight: true
8084
highlight_style: ""

paru.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Gem::Specification.new do |s|
44
s.name = 'paru'
55
s.license = 'GPL-3.0-or-later'
66
s.version = Paru::VERSION.join "."
7-
s.date = '2024-09-12'
7+
s.date = '2024-10-07'
88
s.authors = ['Huub de Beer']
99
s.email = 'Huub@heerdebeer.org'
1010

0 commit comments

Comments
 (0)