release: v0.9.34rc51

This commit is contained in:
Nick Sweeting 2026-06-03 23:21:37 -07:00
parent 40d5dc06a4
commit 2e9686b901
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ urlpatterns = [
path("favicon.ico", static.serve, {"document_root": CONSTANTS.STATIC_DIR, "path": "favicon.ico"}),
path("docs/", RedirectView.as_view(url="https://github.com/ArchiveBox/ArchiveBox/wiki"), name="Docs"),
re_path(r"^admin/agent/?(?=$|opencode)", include("abx_plugins.plugins.opencode.urls")),
re_path(r"^assets/(?P<path>.*)$", opencode_proxy_view, name="opencode-assets"),
re_path(r"^(?P<path>assets/.*)$", opencode_proxy_view, name="opencode-assets"),
path("public/", PublicIndexView.as_view(), name="public-index"),
path("public.html", RedirectView.as_view(url="/public/"), name="public-index-html"),
path("archive/", RedirectView.as_view(url="/")),

View File

@ -1,6 +1,6 @@
{
"name": "archivebox",
"version": "0.9.34rc50",
"version": "0.9.34rc51",
"repository": "github:ArchiveBox/ArchiveBox",
"license": "MIT",
"dependencies": {

View File

@ -1,6 +1,6 @@
[project]
name = "archivebox"
version = "0.9.34rc50"
version = "0.9.34rc51"
requires-python = ">=3.13"
description = "Self-hosted internet archiving solution."
authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]