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

Commit 482fbef

Browse files
committed
Release this as version 0.5.1
1 parent 2d23fb5 commit 482fbef

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

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.5.1] - 2022-10-08
88
### Fixed
99
* Document the function of the `WebResource.frame_name` property.
1010

@@ -143,7 +143,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
143143
### Added
144144
* Initial public release.
145145

146-
[Unreleased]: https://github.com/bmjcode/pywebarchive/compare/v0.5.0...HEAD
146+
[Unreleased]: https://github.com/bmjcode/pywebarchive/compare/v0.5.1...HEAD
147+
[0.5.1]: https://github.com/bmjcode/pywebarchive/compare/v0.5.0...v0.5.1
147148
[0.5.0]: https://github.com/bmjcode/pywebarchive/compare/v0.4.1...v0.5.0
148149
[0.4.1]: https://github.com/bmjcode/pywebarchive/compare/v0.4.0...v0.4.1
149150
[0.4.0]: https://github.com/bmjcode/pywebarchive/compare/v0.3.3...v0.4.0

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,29 @@ pywebarchive is software for reading Apple's [webarchive](https://en.wikipedia.o
33
* Webarchive Extractor converts webarchive files to standard pages you can open in any browser.
44
* The `webarchive` Python module is the code "under the hood" that makes the Extractor work. It's available for other applications to use, too.
55

6-
pywebarchive is open-source software released under the permissive [MIT License](LICENSE). Development takes place [on GitHub](https://github.com/bmjcode/pywebarchive).
6+
pywebarchive is open-source software released under the permissive [MIT License](LICENSE). Development takes place [on GitHub](https://github.com/bmjcode/pywebarchive). As of October 2022, I am no longer adding new features, but I will still accept issues and pull requests to fix what's already there.
77

88

99
## Features
1010

11-
* Available for Windows, macOS, and Linux
11+
* Runs on Windows, macOS, and Linux
1212
* Converts webarchive files to plain HTML
1313
* Handles images, scripts, and style sheets
1414
* Converted pages display just like they would in Safari (apart from normal cross-browser rendering differences)
1515

1616

1717
## Downloads
1818

19-
The latest version is pywebarchive 0.5.0 (released April 16, 2022). See the [changelog](https://github.com/bmjcode/pywebarchive/blob/v0.5.0/CHANGELOG.md) for what's new.
19+
The latest version is pywebarchive 0.5.1 (released October 8, 2022). See the [changelog](https://github.com/bmjcode/pywebarchive/blob/v0.5.1/CHANGELOG.md) for what's new.
2020

2121
**Note**: If you're not reading this on GitHub, this section may be out of date. In that case, the latest version of pywebarchive is available at https://github.com/bmjcode/pywebarchive.
2222

2323
File | Size | Description
2424
---- | ---- | -----------
25-
[Webarchive.Extractor.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.5.0/Webarchive.Extractor.exe) | 7.3 MB | Webarchive Extractor for 32-bit Windows
26-
[Webarchive.Extractor.x64.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.5.0/Webarchive.Extractor.x64.exe) | 8.0 MB | Webarchive Extractor for 64-bit Windows
27-
[pywebarchive-0.5.0.zip](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.5.0.zip) | | source code (zip)
28-
[pywebarchive-0.5.0.tar.gz](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.5.0.tar.gz) | | source code (tar.gz)
25+
[Webarchive.Extractor.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.5.1/Webarchive.Extractor.exe) | 7.3 MB | Webarchive Extractor for 32-bit Windows
26+
[Webarchive.Extractor.x64.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.5.1/Webarchive.Extractor.x64.exe) | 8.0 MB | Webarchive Extractor for 64-bit Windows
27+
[pywebarchive-0.5.1.zip](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.5.1.zip) | | source code (zip)
28+
[pywebarchive-0.5.1.tar.gz](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.5.1.tar.gz) | | source code (tar.gz)
2929

3030
The Windows version of Webarchive Extractor runs on Windows 7 and higher. It is a portable application -- it doesn't require installation, and won't write to Application Data or the Windows Registry.
3131

webarchive/__init__.py

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

27-
__version__ = "0.5.0"
27+
__version__ = "0.5.1"
2828

2929
__all__ = [
3030
"__version__",

0 commit comments

Comments
 (0)