Skip to content

Commit 7285aee

Browse files
committed
v18.2.1
1 parent d547f5b commit 7285aee

6 files changed

Lines changed: 9 additions & 5 deletions

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ instructions, because git commits are used to generate release notes:
2020

2121
<!-- scriv-insert-here -->
2222

23+
<a id='changelog-18.2.1'></a>
24+
## v18.2.1 (2024-12-10)
25+
26+
- [Feature] Add integer variables `TUTOR_VERSION_MAJOR` and `TUTOR_VERSION_MINOR` to the template context. These are parsed from the existing `TUTOR_VERSION` string variable, which takes the format `"MAJOR.MINOR.PATCH"`. We add them as a convenience to developers who need to maintain version-agnostic Tutor plugins (by @michaelwheeler and @kdmccormick).
27+
- [Feature] Adds `tutor config edit` command. This opens the active tutor environment's config.yaml in an editor for manual editing. (by @tecoholic)
28+
- [Improvement] Disable celery gossip and mingle to improve celery performance. (by @Ian2012)
29+
- [Bugfix] Fix breakpoint debugging by attaching container stdin when running `tutor dev start <service>` for a single service. (by @Danyal-Faheem)
30+
2331
<a id='changelog-18.2.0'></a>
2432
## v18.2.0 (2024-12-03)
2533

changelog.d/20241107_164816_kyle_tutor_version_parts.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/20241114_115534_arunmozhi_add_config_edit_command.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/20241204_152125_edunext_better_celery.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/20241205_211837_danyal.faheem_add_dev_attach_command.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

tutor/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Increment this version number to trigger a new release. See
44
# docs/tutor.html#versioning for information on the versioning scheme.
5-
__version__ = "18.2.0"
5+
__version__ = "18.2.1"
66

77
# The version suffix will be appended to the actual version, separated by a
88
# dash. Use this suffix to differentiate between the actual released version and

0 commit comments

Comments
 (0)