Skip to content
This repository was archived by the owner on Sep 24, 2023. It is now read-only.

Commit b1bb0bf

Browse files
committed
Release this as version 0.4.1
1 parent df8f9e1 commit b1bb0bf

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [0.4.1] - 2022-03-26
88
### Fixed
99
* Call `close()` in `WebArchive.__exit__()`.
1010

@@ -121,7 +121,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
121121
### Added
122122
* Initial public release.
123123

124-
[Unreleased]: https://github.com/bmjcode/pywebarchive/compare/v0.4.0...HEAD
124+
[Unreleased]: https://github.com/bmjcode/pywebarchive/compare/v0.4.1...HEAD
125+
[0.4.1]: https://github.com/bmjcode/pywebarchive/compare/v0.4.0...v0.4.1
125126
[0.4.0]: https://github.com/bmjcode/pywebarchive/compare/v0.3.3...v0.4.0
126127
[0.3.3]: https://github.com/bmjcode/pywebarchive/compare/v0.3.2...v0.3.3
127128
[0.3.2]: https://github.com/bmjcode/pywebarchive/compare/v0.3.1...v0.3.2

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ Webarchive Extractor converts webarchives to standard HTML documents. It allows
1212
### Downloads
1313
File | Size | Description
1414
---- | ---- | -----------
15-
[Webarchive.Extractor.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.4.0/Webarchive.Extractor.exe) | 7.3 MB | Windows (32-bit, standalone)
16-
[Webarchive.Extractor.x64.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.4.0/Webarchive.Extractor.x64.exe) | 8.0 MB | Windows (64-bit, standalone)
17-
[pywebarchive-0.4.0.zip](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.4.0.zip) | | source code (zip)
18-
[pywebarchive-0.4.0.tar.gz](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.4.0.tar.gz) | | source code (tar.gz)
15+
[Webarchive.Extractor.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.4.1/Webarchive.Extractor.exe) | 7.3 MB | Windows (32-bit, standalone)
16+
[Webarchive.Extractor.x64.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.4.1/Webarchive.Extractor.x64.exe) | 8.0 MB | Windows (64-bit, standalone)
17+
[pywebarchive-0.4.1.zip](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.4.1.zip) | | source code (zip)
18+
[pywebarchive-0.4.1.tar.gz](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.4.1.tar.gz) | | source code (tar.gz)
1919

2020
### Notes
2121
The Windows version runs on Windows 7 and higher. It is a standalone executable -- no installation required.

webarchive/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from .webresource import WebResource
2727
from .exceptions import WebArchiveError
2828

29-
__version__ = "0.4.0"
29+
__version__ = "0.4.1"
3030

3131
__all__ = [
3232
"__version__",

0 commit comments

Comments
 (0)