Skip to content

Commit 17dceae

Browse files
committed
Update version number: v1.10.0 -> v1.11.0
1 parent 8e265ba commit 17dceae

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Download ⬇︎
1818

1919
Either install a binary version of Crystal:
2020

21-
* [macOS 13 and later](https://github.com/davidfstr/Crystal-Web-Archiver/releases/download/v1.10.0/crystal-mac-1.10.0.dmg)
22-
* [Windows 11 and later](https://github.com/davidfstr/Crystal-Web-Archiver/releases/download/v1.10.0/crystal-win-1.10.0.exe)
21+
* [macOS 13 and later](https://github.com/davidfstr/Crystal-Web-Archiver/releases/download/v1.11.0/crystal-mac-1.11.0.dmg)
22+
* [Windows 11 and later](https://github.com/davidfstr/Crystal-Web-Archiver/releases/download/v1.11.0/crystal-win-1.11.0.exe)
2323

2424
Or install from source, using pipx:
2525

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Release Notes ⋮
1010
[high-priority issues]: https://github.com/davidfstr/Crystal-Web-Archiver/issues?q=is%3Aopen+is%3Aissue+label%3Apriority-high
1111
[medium-priority issues]: https://github.com/davidfstr/Crystal-Web-Archiver/issues?q=is%3Aopen+is%3Aissue+label%3Apriority-medium
1212

13-
### main
13+
### v1.11.0 (August 6, 2025)
1414

1515
This release contains many improvements to the first-run experience:
1616
Projects are opened as untitled rather than immediately asking for a name and

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "crystal-web"
3-
version = "1.10.0"
3+
version = "1.11.0"
44
description = "Downloads websites for long-term archival."
55
authors = ["David Foster <david@dafoster.net>"]
66
readme = "README.md"

setup/win-installer.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[Setup]
22
AppName=Crystal
3-
AppVersion=1.10.0
3+
AppVersion=1.11.0
44
AppCopyright=Copyright (C) 2011-2025 David Foster. All Rights Reserved
55
DefaultDirName={autopf}\Crystal
66
DefaultGroupName=Crystal
77
UninstallDisplayIcon={app}\Crystal.exe
88
Compression=lzma2
99
SolidCompression=yes
10-
OutputBaseFilename=crystal-win-1.10.0
10+
OutputBaseFilename=crystal-win-1.11.0
1111
OutputDir=dist-win
1212
DisableProgramGroupPage=yes
1313
; Tell Explorer to refresh file extension information after (un)install,

src/crystal/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.10.0'
1+
__version__ = '1.11.0'
22

33
APP_NAME = 'Crystal'
44
APP_AUTHOR = 'DaFoster'

src/crystal/tests/util/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def found(expect: BannerLineType | None, line: str) -> None:
198198
next_lines.extend(lines)
199199
line = next_lines.pop(0)
200200

201-
# ex: 'Crystal 1.10.0 (Python 3.12.2)'
201+
# ex: 'Crystal 1.11.0 (Python 3.12.2)'
202202
if line.startswith('Crystal '):
203203
found("version", line)
204204
# ex: 'Type "help" for more information.'

0 commit comments

Comments
 (0)