File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed
Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
77
88<!-- insertion marker -->
9+ ## [ 1.2.4] ( https://github.com/pawamoy/copier-uv/releases/tag/1.2.4 ) - 2025-01-23
10+
11+ <small >[ Compare with 1.5.6] ( https://github.com/pawamoy/copier-uv/compare/1.2.3...1.2.4 ) </small >
12+
13+ ### Merge upstream
14+
15+ #### Bug Fixes
16+
17+ - Preserve symlinks (make -> make.py) ([ dab1219] ( https://github.com/pawamoy/copier-uv/commit/dab12193b3651001e10dab56b0ff72aacfcdf3c7 ) by Timothée Mazzucotelli).
18+
19+ #### Code Refactoring
20+
21+ - Enable Mypy colored output ([ c6622f8] ( https://github.com/pawamoy/copier-uv/commit/c6622f8e1dc2bb94860c1f3ef4dc9305bbc87422 ) by Timothée Mazzucotelli).
22+
923## [ 1.2.3] ( https://github.com/mkdocstrings/handler-template/releases/tag/1.2.3 ) - 2024-12-24
1024
1125<small >[ Compare with 1.2.2] ( https://github.com/mkdocstrings/handler-template/compare/1.2.2...1.2.3 ) </small >
Original file line number Diff line number Diff line change 55 keep_trailing_newline : true
66_subdirectory : project
77_templates_suffix : .jinja
8+ _preserve_symlinks : true
89_jinja_extensions :
910- copier_templates_extensions.TemplateExtensionLoader
1011- extensions.py:CurrentYearExtension
Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ def check_docs(ctx: Context) -> None:
8585def check_types(ctx: Context) -> None:
8686 """Check that the code is correctly typed."""
8787 os.environ["MYPYPATH"] = "src"
88+ os.environ["FORCE_COLOR"] = "1"
8889 ctx.run(
8990 tools.mypy(*PY_SRC_LIST, config_file="config/mypy.ini"),
9091 title=pyprefix("Type-checking"),
You can’t perform that action at this time.
0 commit comments