Skip to content

Commit

Permalink
Release 1.6.0b
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfstr committed Sep 4, 2023
1 parent cc23432 commit 94fc319
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Additional documentation will be available once Crystal is no longer **in beta**
Download ⬇︎
--------

* [macOS 10.14 and later](https://github.com/davidfstr/Crystal-Web-Archiver/releases/download/v1.5.0b/crystal-mac-1.5.0b.dmg)
* [macOS 10.14 and later](https://github.com/davidfstr/Crystal-Web-Archiver/releases/download/v1.6.0b/crystal-mac-1.6.0b.dmg)
* You will need to [right-click or Control-click on the application and select "Open" to open it for the first time](https://github.com/davidfstr/Crystal-Web-Archiver/issues/20).
* [Windows 7, 8, 10](https://github.com/davidfstr/Crystal-Web-Archiver/releases/download/v1.5.0b/crystal-win-1.5.0b.exe)
* [Windows 7, 8, 10](https://github.com/davidfstr/Crystal-Web-Archiver/releases/download/v1.6.0b/crystal-win-1.6.0b.exe)
* Linux
* Install Python >=3.8,<3.12 and pip from your package manager
* Ubuntu 22.04: `apt-get update; apt-get install -y python3 python3-pip python3-venv`
Expand Down Expand Up @@ -262,7 +262,7 @@ Release Notes ⋮
[high-priority issues]: https://github.com/davidfstr/Crystal-Web-Archiver/issues?q=is%3Aopen+is%3Aissue+label%3Apriority-high
[medium-priority issues]: https://github.com/davidfstr/Crystal-Web-Archiver/issues?q=is%3Aopen+is%3Aissue+label%3Apriority-medium

### main
### v1.6.0b (September 4, 2023)

This release features significant improvements to downloading large websites
that have about 10 million URLs. Projects open and close faster. The UI is faster.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "crystal-web"
version = "1.5.0b.post1"
version = "1.6.0b"
description = "Downloads websites for long-term archival."
authors = ["David Foster <[email protected]>"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions setup/win-installer.iss
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[Setup]
AppName=Crystal Web Archiver
AppVersion=1.5.0b
AppVersion=1.6.0b
AppCopyright=Copyright (C) 2011-2023 David Foster. All Rights Reserved
DefaultDirName={pf}\Crystal Web Archiver
DefaultGroupName=Crystal Web Archiver
UninstallDisplayIcon={app}\Crystal Web Archiver.exe
Compression=lzma2
SolidCompression=yes
OutputBaseFilename=crystal-win-1.5.0b
OutputBaseFilename=crystal-win-1.6.0b
OutputDir=dist-win
DisableProgramGroupPage=yes

Expand Down
2 changes: 1 addition & 1 deletion src/crystal/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.5.0b'
__version__ = '1.6.0b'
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


def test_version_is_expected_value() -> None:
assert __version__ == '1.5.0b', \
assert __version__ == '1.6.0b', \
'Version in crystal/__init__.py is not the expected value'


Expand Down

0 comments on commit 94fc319

Please sign in to comment.