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

Commit

Permalink
Release this as version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bmjcode committed Apr 16, 2022
1 parent 7b2794d commit 06ff766
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be 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).

## [Unreleased]
## [0.5.0] - 2022-04-16
### Added
* More complete documentation for the `WebArchive` and `WebResource` classes.
* Documentation on [pywebarchive's internals](INTERNALS.md).
Expand Down Expand Up @@ -139,7 +139,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
* Initial public release.

[Unreleased]: https://github.com/bmjcode/pywebarchive/compare/v0.4.1...HEAD
[Unreleased]: https://github.com/bmjcode/pywebarchive/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/bmjcode/pywebarchive/compare/v0.4.1...v0.5.0
[0.4.1]: https://github.com/bmjcode/pywebarchive/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/bmjcode/pywebarchive/compare/v0.3.3...v0.4.0
[0.3.3]: https://github.com/bmjcode/pywebarchive/compare/v0.3.2...v0.3.3
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ pywebarchive is open-source software released under the permissive [MIT License]

## Downloads

**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.
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.

**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.

File | Size | Description
---- | ---- | -----------
[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
[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
[pywebarchive-0.4.1.zip](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.4.1.zip) | | source code (zip)
[pywebarchive-0.4.1.tar.gz](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.4.1.tar.gz) | | source code (tar.gz)

See the [changelog](https://github.com/bmjcode/pywebarchive/blob/v0.4.1/CHANGELOG.md) for what's new.
[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
[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
[pywebarchive-0.5.0.zip](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.5.0.zip) | | source code (zip)
[pywebarchive-0.5.0.tar.gz](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.5.0.tar.gz) | | source code (tar.gz)

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.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
URL = "https://github.com/bmjcode/pywebarchive"
PACKAGES = find_packages(exclude="test")
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
Expand Down
2 changes: 1 addition & 1 deletion webarchive/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from .webresource import WebResource
from .exceptions import WebArchiveError

__version__ = "0.4.1"
__version__ = "0.5.0"

__all__ = [
"__version__",
Expand Down

0 comments on commit 06ff766

Please sign in to comment.