Skip to content

Commit 3ad2c67

Browse files
pawamoyyajo
authored andcommitted
Autodoc
1 parent 45c5f0d commit 3ad2c67

33 files changed

Lines changed: 1131 additions & 694 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ pip-wheel-metadata
3333
# Documentation
3434
*/_build/*
3535
*/site/*
36+
/site
3637
.mypy_cache/*
3738
.cache
3839
*.log

.pre-commit-config.yaml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,3 @@ repos:
7070
- id: mixed-line-ending
7171
args: ["--fix=lf"]
7272
- id: trailing-whitespace
73-
74-
# regenerate the README table of contents
75-
- repo: https://github.com/thlorenz/doctoc
76-
rev: v1.4.0
77-
hooks:
78-
- id: doctoc
79-
args:
80-
- --github
81-
- --maxlevel=6
82-
- --title=<summary>Table of contents</summary>
83-
exclude: ^tests/

CHANGELOG.md

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,18 @@
33
All notable changes to this project will be documented in this file. This project
44
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
55

6-
<details>
7-
<!-- prettier-ignore-start -->
8-
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
9-
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
10-
<summary>Table of contents</summary>
11-
12-
- [Version 4.0.0 (2020-06)](#version-400-2020-06)
13-
- [Version 3.2.0 (2020-06)](#version-320-2020-06)
14-
- [Version 3.1.0 (2020-05)](#version-310-2020-05)
15-
- [Version 3.0.0 (2020-03)](#version-300-2020-03)
16-
- [Features](#features)
17-
- [Other](#other)
18-
- [Version 2.5 (2019-06)](#version-25-2019-06)
19-
- [Version 2.4.2 (2019-06)](#version-242-2019-06)
20-
- [Version 2.4 (2019-06)](#version-24-2019-06)
21-
- [Version 2.3 (2019-04)](#version-23-2019-04)
22-
- [Version 2.2 (2019-04)](#version-22-2019-04)
23-
- [Version 2.1 (2019-02)](#version-21-2019-02)
24-
- [Version 2.0 (2019-02)](#version-20-2019-02)
25-
26-
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
27-
<!-- prettier-ignore-end -->
28-
</details>
6+
### Version 4.0.2 (2020-07-21)
7+
8+
[All changes here](https://github.com/copier-org/copier/milestone/11?closed=1). Summary:
9+
10+
- Fix wrong templated default answers classification, which produced some questions being ignored.
11+
12+
### Version 4.0.1 (2020-06-23)
13+
14+
[All changes here](https://github.com/copier-org/copier/milestone/10?closed=1). Summary:
15+
16+
- Fix wrong prompt regression when updating.
17+
- Remove redundant `dst` fixture in tests.
2918

3019
### Version 4.0.0 (2020-06)
3120

CONTRIBUTING.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,6 @@
33
Contributions are welcome, and they are greatly appreciated! Every little bit helps, and
44
credit will always be given.
55

6-
<details>
7-
<!-- prettier-ignore-start -->
8-
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
9-
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
10-
<summary>Table of contents</summary>
11-
12-
- [Report Bugs](#report-bugs)
13-
- [Fix Bugs](#fix-bugs)
14-
- [Implement Features](#implement-features)
15-
- [Write Documentation](#write-documentation)
16-
- [Submit Feedback](#submit-feedback)
17-
- [Get Started!](#get-started)
18-
- [Pull Request Guidelines](#pull-request-guidelines)
19-
- [Tips](#tips)
20-
21-
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
22-
<!-- prettier-ignore-end -->
23-
</details>
24-
256
## Report Bugs
267

278
Report bugs at <https://github.com/jpscaletti/copier/issues>.

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ clean-pyc:
2323
find . -name '__pycache__' -exec rm -rf {} +
2424
find . -name '.pytest_cache' -exec rm -rf {} +
2525

26+
.PHONY: docs
27+
docs:
28+
mkdocs serve
29+
2630
test:
2731
pytest -x copier tests
2832

0 commit comments

Comments
 (0)