Skip to content

Commit 356fc2a

Browse files
committed
Prepare for release
- changelog updated - bump version number - Github tests added for Python 3.8 and 3.9
1 parent aaf16bd commit 356fc2a

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/test_push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.10", "3.11", "3.12"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1616

1717
steps:
1818
- name: Checkout code

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
.py~
44
.python-version
55
journals/
6+
.vscode
67

78
#Byte-compiled led / optimized / DLL files
89
__pycache__/
@@ -37,8 +38,9 @@ __*/
3738
# Other files (generated by mkdocs-macros or others)
3839
cache*
3940
.DS_Store
41+
.pytest_cache/
4042

41-
# JetBrains PyCharm and other IntelliJ based IDEs
43+
# Other test files
4244
**/journal/
4345
**/_temp/
4446

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project are documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 1.5.0, 2025-11-13
8+
* Added: For each push, testing on github for versions Python 3.8 to 3.12
9+
* Fixed: bug in import of packages when not in source dir (#278)
10+
711
## 1.4.1, 2025-10-18
812
* Added: support for j2_extensions paramater in config file (#272)
913
* Fixed: missing dependency declaration on `requests` (#269)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "mkdocs-macros-plugin"
33

44
# This version number is the REFERENCE for the rest of the project,
55
# particularly for update_pypi.sh
6-
version = "1.4.2"
6+
version = "1.5.0"
77

88
description = "Unleash the power of MkDocs with macros and variables"
99
readme = "README.md"

0 commit comments

Comments
 (0)