From 5cc19a7c2e5654c9f910c34b0e0b189e19320570 Mon Sep 17 00:00:00 2001 From: Huub de Beer Date: Sat, 4 Feb 2023 18:42:36 +0100 Subject: [PATCH] Update Dockerfile for Ruby 3.2 and pandoc 3.0.1 --- Dockerfile | 6 +++--- lib/paru.rb | 2 +- paru.gemspec | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 47094b3..bf48e2d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM ruby:3.1 +FROM ruby:3.2 ENV LANG C.UTF-8 RUN apt-get update \ ; apt-get install -y wget texlive-base \ - ; wget -q https://github.com/jgm/pandoc/releases/download/2.19.1/pandoc-2.19.1-1-amd64.deb \ - ; apt-get install ./pandoc-2.19.1-1-amd64.deb \ + ; wget -q https://github.com/jgm/pandoc/releases/download/3.0.1/pandoc-3.0.1-1-amd64.deb \ + ; apt-get install ./pandoc-3.0.1-1-amd64.deb \ ; useradd -ms /bin/bash paru-user USER paru-user SHELL ["/bin/bash", "-l", "-c"] diff --git a/lib/paru.rb b/lib/paru.rb index 59ca6a5..c631ae1 100644 --- a/lib/paru.rb +++ b/lib/paru.rb @@ -18,5 +18,5 @@ #++ module Paru # Paru's current version - VERSION = [1, 0, 3].freeze + VERSION = [1, 1, 0].freeze end diff --git a/paru.gemspec b/paru.gemspec index 1280ae6..69ec1bc 100644 --- a/paru.gemspec +++ b/paru.gemspec @@ -4,7 +4,7 @@ Gem::Specification.new do |s| s.name = 'paru' s.license = 'GPL-3.0' s.version = Paru::VERSION.join "." - s.date = '2022-08-07' + s.date = '2023-02-04' s.authors = ['Huub de Beer'] s.email = 'Huub@heerdebeer.org'