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

Commit 958fd32

Browse files
committed
Release this as version 0.3.3
1 parent 4d12702 commit 958fd32

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ 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.3.3] - 2021-11-05
88
### Added
99
* Unit tests for HTML- and CSS-rewriting logic.
10+
* Build script for the Windows version of Webarchive Extractor.
1011
### Changed
1112
* Clean up the `WebResource` class's internal API.
1213
* Do not force a newline after the doctype in `HTMLRewriter.handle_decl()`.
@@ -103,7 +104,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
103104
### Added
104105
* Initial public release.
105106

106-
[Unreleased]: https://github.com/bmjcode/pywebarchive/compare/v0.3.2...HEAD
107+
[Unreleased]: https://github.com/bmjcode/pywebarchive/compare/v0.3.3...HEAD
108+
[0.3.3]: https://github.com/bmjcode/pywebarchive/compare/v0.3.2...v0.3.3
107109
[0.3.2]: https://github.com/bmjcode/pywebarchive/compare/v0.3.1...v0.3.2
108110
[0.3.1]: https://github.com/bmjcode/pywebarchive/compare/v0.3.0...v0.3.1
109111
[0.3.0]: https://github.com/bmjcode/pywebarchive/compare/v0.2.4...v0.3.0

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.3.2/Webarchive.Extractor.exe) | 7.4 MB | Windows (32-bit, standalone)
16-
[Webarchive.Extractor.x64.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.3.2/Webarchive.Extractor.x64.exe) | 8.1 MB | Windows (64-bit, standalone)
17-
[pywebarchive-0.3.2.zip](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.3.2.zip) | | source code (zip)
18-
[pywebarchive-0.3.2.tar.gz](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.3.2.tar.gz) | | source code (tar.gz)
15+
[Webarchive.Extractor.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.3.3/Webarchive.Extractor.exe) | 7.4 MB | Windows (32-bit, standalone)
16+
[Webarchive.Extractor.x64.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.3.3/Webarchive.Extractor.x64.exe) | 8.1 MB | Windows (64-bit, standalone)
17+
[pywebarchive-0.3.3.zip](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.3.3.zip) | | source code (zip)
18+
[pywebarchive-0.3.3.tar.gz](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.3.3.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
@@ -24,7 +24,7 @@
2424
from .webresource import WebResource
2525
from .exceptions import WebArchiveError
2626

27-
__version__ = "0.3.2"
27+
__version__ = "0.3.3"
2828

2929
__all__ = ["__version__",
3030
"WebArchive", "WebResource", "WebArchiveError"]

0 commit comments

Comments
 (0)