Skip to content

Commit 7743c85

Browse files
committed
mod: bump v1.1.2 to v1.2.0
1 parent 9035dc3 commit 7743c85

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## v1.2.0
2+
- add dynamic theme support with `themes.toml` configuration
3+
- replace hardcoded colour constants with dynamic theme loading
4+
- add support for storing active theme in `.pylings.toml`
5+
- add multiple built-in colour themes
6+
- enable user to specify their own theme in `pylings.toml`
7+
- update UI to apply theme background colors
8+
- clean up screen styles and add horizontal padding for better layout
9+
- fix f-string quote and backslash escape for Python <3.12 compatibility
10+
- add `None` check for `importlib.util.find_spec` origin to avoid type errors
11+
112
## v1.1.2
213
- fix variable name mismatch in {backups,exercises,solutions}\variables5.py
314
- fix update message

pylings/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
Attributes:
88
__version__ (str): The current version of the pylings package.
99
"""
10-
__version__ = "1.1.2"
10+
__version__ = "1.2.0"
1111
# End-of-file (EOF)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pylings"
7-
version = "1.1.2"
7+
version = "1.2.0"
88
description = "Python exercise trainer, inspired by rustlings."
99
authors = [{ name="Seb Blair", email="s.blair@gre.ac.uk" }]
1010
readme = "README.md"

0 commit comments

Comments
 (0)