Skip to content

Commit

Permalink
releasing 1.5.1 with latest wabac.js
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin committed Feb 6, 2023
1 parent 06d282e commit 7b75af1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0).

## [1.5.1] - 2023-02-06

### Changed

- Using wabac.js 2.15.2

## [1.5.0] - 2023-02-02

### Added
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def read(*names, **kwargs):
return fh.read()


REPLAY_SOURCE_URL = "https://cdn.jsdelivr.net/npm/@webrecorder/wabac@2.15.0/dist/"
REPLAY_SOURCE_URL = "https://cdn.jsdelivr.net/npm/@webrecorder/wabac@2.15.2/dist/"


def download_replay(name):
Expand Down
2 changes: 1 addition & 1 deletion src/warc2zim/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.0
1.5.1
4 changes: 2 additions & 2 deletions tests/test_warc_to_zim.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def test_warc_to_zim_specify_params_and_metadata(self, tmp_path):
"--zim-file",
zim_output,
"-r",
"https://cdn.jsdelivr.net/npm/@webrecorder/wabac@2.15.0/dist/",
"https://cdn.jsdelivr.net/npm/@webrecorder/wabac@2.15.2/dist/",
"--tags",
"some",
"--tags",
Expand Down Expand Up @@ -440,7 +440,7 @@ def test_local_replay_viewer_url(self, tmp_path):
zim_local_sw = "zim-local-sw.zim"

res = requests.get(
"https://cdn.jsdelivr.net/npm/@webrecorder/wabac@2.15.0/dist/sw.js"
"https://cdn.jsdelivr.net/npm/@webrecorder/wabac@2.15.2/dist/sw.js"
)

with open(tmp_path / "sw.js", "wt") as fh:
Expand Down

0 comments on commit 7b75af1

Please sign in to comment.