Skip to content

Commit

Permalink
bump 4.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
yzqzss committed Aug 19, 2023
1 parent c177971 commit 2142e81
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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 = "wikiteam3"
version = "4.0.6"
version = "4.0.7"
description = "Tools for downloading and preserving MediaWikis. We archive MediaWikis, from Wikipedia to tiniest wikis."
license = "GPL-3.0-or-later"
# authors = ["WikiTeam Contributors"] # FIXME: it's not an valid author name
Expand Down
2 changes: 1 addition & 1 deletion wikiteam3/dumpgenerator/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__VERSION__ = "4.0.6"
__VERSION__ = "4.0.7"


def getVersion():
Expand Down
4 changes: 2 additions & 2 deletions wikiteam3/uploader/uploader.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ def prepare_item_metadata(wikidump_dir: Path, config: Config, arg: Args) -> Tupl
"subject": "; ".join(
keywords
), # Keywords should be separated by ; but it doesn't matter much; the alternative is to set one per field with subject[0], subject[1], ...
"licenseurl": licenseurl,
"rights": rights_text,
"licenseurl": licenseurl or None,
"rights": rights_text or None,
"originalurl": config.api or config.index,
"upload-state": "uploading",
"scanner": f"wikiteam3 (v{getVersion()})",
Expand Down

0 comments on commit 2142e81

Please sign in to comment.