Skip to content

Commit 8bffaeb

Browse files
committed
Update changelog and bump version
1 parent bca7cb7 commit 8bffaeb

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Version 6.1.0
2+
3+
- Support for Ren'Py 8.5.0+
4+
- Fix a string borrowing issue in the Windows build
5+
16
# Version 6.0.0
27

38
This release adds support for task parallelization, automatically executing tasks in parallel where possible. It additionally enables optional task multi-instancing, enabling duplicate invocations of tasks with different parameters.
@@ -76,12 +81,10 @@ If the Ren'Py version requested when invoking `renutil launch` is not installed,
7681
The task system in `renconstruct` has been reworked to allow for more flexibility in defining tasks. While this is mostly backwards-compatible, there are some breaking changes:
7782

7883
- Custom tasks must now accept two additional parameters in their `__init__` method:
79-
8084
1. `renpy_path`: Path to the Ren'Py installation used to build the distributions.
8185
2. `registry`: Path to the registry directory containing the Ren'Py installation(s).
8286

8387
- The `pre_build` and `post_build` methods of custom tasks must now accept an additional parameter:
84-
8588
1. `on_builds`: A dictionary mapping build names to the paths of the built distributions. The values of this dictionary will be `None` during `pre_build` because nothing has been built at that point. Example: `{ "mac": "output/mygame-1.0-mac.zip" }`. Tasks can then opt to either do processing per build artifact or globally, allowing them to -for example- handle ZIP files differently than directory outputs.
8689

8790
## Support for nested values in config files

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "renkit"
3-
version = "6.1.0-alpha.1"
3+
version = "6.1.0-alpha.2"
44
edition = "2024"
55
repository = "https://github.com/kobaltcore/renkit"
66
description = "A collection of tools to help you organise and use Ren'Py instances from the command line."

0 commit comments

Comments
 (0)