Skip to content

Commit 1a32232

Browse files
committed
update release codenames
1 parent 73f4cf8 commit 1a32232

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## v1.8 (Upcoming)
3+
## v1.8: Twin Soul
44

55
### BL3 Mod Menu v1.6
66
- Support host-only coop support value

pick_release_name.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,7 @@
703703
"Time Skip",
704704
"Reunion",
705705
"Deathless Mantle",
706+
"Twin Soul",
706707
]
707708

708709

@@ -773,4 +774,4 @@ def pick_release_name(commit_hash: str, excludes: list[str] = PREVIOUS_RELEASE_N
773774
excludes = [] if args.ignore_previous_releases else PREVIOUS_RELEASE_NAMES
774775
excludes += args.exclude
775776

776-
print(pick_release_name(commit_hash, excludes))
777+
print(pick_release_name(commit_hash, excludes)) # noqa: T201

prepare_release.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def zip_release(
337337
args = parser.parse_args()
338338

339339
if check_git_is_dirty():
340-
print("WARNING: git repo is dirty")
340+
print("WARNING: git repo is dirty") # noqa: T201
341341

342342
install_dir = INSTALL_DIR_BASE / str(args.preset)
343343

@@ -358,6 +358,6 @@ def zip_release(
358358
continue
359359

360360
name = f"{prefix}-sdk-{args.preset}.zip"
361-
print(f"Zipping {name} ...")
361+
print(f"Zipping {name} ...") # noqa: T201
362362

363363
zip_release(Path(name), mods, "debug" in args.preset, install_dir)

0 commit comments

Comments
 (0)