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

Commit 06ff766

Browse files
committed
Release this as version 0.5.0
1 parent 7b2794d commit 06ff766

4 files changed

Lines changed: 12 additions & 11 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.5.0] - 2022-04-16
88
### Added
99
* More complete documentation for the `WebArchive` and `WebResource` classes.
1010
* Documentation on [pywebarchive's internals](INTERNALS.md).
@@ -139,7 +139,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
139139
### Added
140140
* Initial public release.
141141

142-
[Unreleased]: https://github.com/bmjcode/pywebarchive/compare/v0.4.1...HEAD
142+
[Unreleased]: https://github.com/bmjcode/pywebarchive/compare/v0.5.0...HEAD
143+
[0.5.0]: https://github.com/bmjcode/pywebarchive/compare/v0.4.1...v0.5.0
143144
[0.4.1]: https://github.com/bmjcode/pywebarchive/compare/v0.4.0...v0.4.1
144145
[0.4.0]: https://github.com/bmjcode/pywebarchive/compare/v0.3.3...v0.4.0
145146
[0.3.3]: https://github.com/bmjcode/pywebarchive/compare/v0.3.2...v0.3.3

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ pywebarchive is open-source software released under the permissive [MIT License]
1616

1717
## Downloads
1818

19-
**Note**: If you're not reading this on GitHub, the links below may be out of date. The latest version of pywebarchive is available at https://github.com/bmjcode/pywebarchive.
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.
20+
21+
**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.
2022

2123
File | Size | Description
2224
---- | ---- | -----------
23-
[Webarchive.Extractor.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.4.1/Webarchive.Extractor.exe) | 7.3 MB | Webarchive Extractor for 32-bit Windows
24-
[Webarchive.Extractor.x64.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.4.1/Webarchive.Extractor.x64.exe) | 8.0 MB | Webarchive Extractor for 64-bit Windows
25-
[pywebarchive-0.4.1.zip](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.4.1.zip) | | source code (zip)
26-
[pywebarchive-0.4.1.tar.gz](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.4.1.tar.gz) | | source code (tar.gz)
27-
28-
See the [changelog](https://github.com/bmjcode/pywebarchive/blob/v0.4.1/CHANGELOG.md) for what's new.
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)
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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
URL = "https://github.com/bmjcode/pywebarchive"
1616
PACKAGES = find_packages(exclude="test")
1717
CLASSIFIERS = [
18-
"Development Status :: 4 - Beta",
18+
"Development Status :: 5 - Production/Stable",
1919
"Programming Language :: Python :: 3",
2020
"License :: OSI Approved :: MIT License",
2121
"Operating System :: OS Independent",

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.4.1"
27+
__version__ = "0.5.0"
2828

2929
__all__ = [
3030
"__version__",

0 commit comments

Comments
 (0)