From 64bc8bf09fee18c3553272a564b12b70dcb72ab7 Mon Sep 17 00:00:00 2001 From: renaud gaudin Date: Mon, 6 Feb 2023 11:48:44 +0100 Subject: [PATCH] releasing 1.3.1 --- CHANGELOG.md | 6 ++++++ Dockerfile | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fec694e..0b93a40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) (as of version 1.2.0). +## [1.3.1] - 2023-02-06 + +### Changed + +- Using browsertrix-crawler 0.8.0 +- Using warc2zim version 1.5.1 with wabac.js 2.15.2 ## [1.3.0] - 2023-02-02 diff --git a/Dockerfile b/Dockerfile index d835704..619ceb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM webrecorder/browsertrix-crawler:0.8.0-beta.1 +FROM webrecorder/browsertrix-crawler:0.8.0 LABEL org.opencontainers.image.source https://github.com/openzim/zimit RUN apt-get update && apt-get install -qqy --no-install-recommends libmagic1 && apt-get clean && rm -rf /var/lib/apt/lists/* # temp (needs warc2zim release on zimit release) -RUN pip3 install --no-cache-dir 'requests>=2.24.0' 'inotify==0.2.10' 'tld>=0.12,<0.13' 'warc2zim==1.5.0' +RUN pip3 install --no-cache-dir 'requests>=2.24.0' 'inotify==0.2.10' 'tld>=0.12,<0.13' 'warc2zim==1.5.1' RUN mkdir -p /output