Skip to content

Commit ae63129

Browse files
authored
Merge pull request #53 from apple1417/master
update release codename
2 parents 24d163f + 7be3c99 commit ae63129

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-
## v3.5 (Upcoming)
3+
## v3.5: Slagga
44
- Upgraded the Microsoft Visual C++ version the SDK is built with. This may cause some people to
55
crash immediately on launch, to fix this install the latest
66
[Microsoft Visual C++ Redistrubutable](https://aka.ms/vs/17/release/vc_redist.x86.exe).

pick_release_name.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,7 @@
376376
"Razorback",
377377
"Naught",
378378
"Luck Cannon",
379+
"Slagga",
379380
]
380381

381382

@@ -450,4 +451,4 @@ def pick_release_name(commit_hash: str, excludes: list[str] = PREVIOUS_RELEASE_N
450451
excludes = [] if args.ignore_previous_releases else PREVIOUS_RELEASE_NAMES
451452
excludes += args.exclude
452453

453-
print(pick_release_name(commit_hash, excludes))
454+
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
@@ -345,7 +345,7 @@ def zip_release(
345345
args = parser.parse_args()
346346

347347
if check_git_is_dirty():
348-
print("WARNING: git repo is dirty")
348+
print("WARNING: git repo is dirty") # noqa: T201
349349

350350
install_dir = INSTALL_DIR_BASE / str(args.preset)
351351

@@ -356,6 +356,6 @@ def zip_release(
356356
assert install_dir.exists() and install_dir.is_dir(), "install dir doesn't exist"
357357

358358
name = f"willow2-sdk-{args.preset}.zip"
359-
print(f"Zipping {name} ...")
359+
print(f"Zipping {name} ...") # noqa: T201
360360

361361
zip_release(Path(name), ALL_MOD_FOLDERS, "debug" in args.preset, install_dir)

0 commit comments

Comments
 (0)