File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
12
## v1.1.2
2
13
- fix variable name mismatch in {backups,exercises,solutions}\variables5.py
3
14
- fix update message
Original file line number Diff line number Diff line change 7
7
Attributes:
8
8
__version__ (str): The current version of the pylings package.
9
9
"""
10
- __version__ = "1.1.2 "
10
+ __version__ = "1.2.0 "
11
11
# End-of-file (EOF)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " pylings"
7
- version = " 1.1.2 "
7
+ version = " 1.2.0 "
8
8
description = " Python exercise trainer, inspired by rustlings."
9
9
authors = [{ name =" Seb Blair" , email =" s.blair@gre.ac.uk" }]
10
10
readme = " README.md"
You can’t perform that action at this time.
0 commit comments