Skip to content

Commit

Permalink
Autodoc
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy authored and yajo committed Jul 31, 2020
1 parent 45c5f0d commit 3ad2c67
Show file tree
Hide file tree
Showing 33 changed files with 1,131 additions and 694 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ pip-wheel-metadata
# Documentation
*/_build/*
*/site/*
/site
.mypy_cache/*
.cache
*.log
Expand Down
11 changes: 0 additions & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,3 @@ repos:
- id: mixed-line-ending
args: ["--fix=lf"]
- id: trailing-whitespace

# regenerate the README table of contents
- repo: https://github.com/thlorenz/doctoc
rev: v1.4.0
hooks:
- id: doctoc
args:
- --github
- --maxlevel=6
- --title=<summary>Table of contents</summary>
exclude: ^tests/
35 changes: 12 additions & 23 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,18 @@
All notable changes to this project will be documented in this file. This project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)

<details>
<!-- prettier-ignore-start -->
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
<summary>Table of contents</summary>

- [Version 4.0.0 (2020-06)](#version-400-2020-06)
- [Version 3.2.0 (2020-06)](#version-320-2020-06)
- [Version 3.1.0 (2020-05)](#version-310-2020-05)
- [Version 3.0.0 (2020-03)](#version-300-2020-03)
- [Features](#features)
- [Other](#other)
- [Version 2.5 (2019-06)](#version-25-2019-06)
- [Version 2.4.2 (2019-06)](#version-242-2019-06)
- [Version 2.4 (2019-06)](#version-24-2019-06)
- [Version 2.3 (2019-04)](#version-23-2019-04)
- [Version 2.2 (2019-04)](#version-22-2019-04)
- [Version 2.1 (2019-02)](#version-21-2019-02)
- [Version 2.0 (2019-02)](#version-20-2019-02)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->
<!-- prettier-ignore-end -->
</details>
### Version 4.0.2 (2020-07-21)

[All changes here](https://github.com/copier-org/copier/milestone/11?closed=1). Summary:

- Fix wrong templated default answers classification, which produced some questions being ignored.

### Version 4.0.1 (2020-06-23)

[All changes here](https://github.com/copier-org/copier/milestone/10?closed=1). Summary:

- Fix wrong prompt regression when updating.
- Remove redundant `dst` fixture in tests.

### Version 4.0.0 (2020-06)

Expand Down
19 changes: 0 additions & 19 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,6 @@
Contributions are welcome, and they are greatly appreciated! Every little bit helps, and
credit will always be given.

<details>
<!-- prettier-ignore-start -->
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
<summary>Table of contents</summary>

- [Report Bugs](#report-bugs)
- [Fix Bugs](#fix-bugs)
- [Implement Features](#implement-features)
- [Write Documentation](#write-documentation)
- [Submit Feedback](#submit-feedback)
- [Get Started!](#get-started)
- [Pull Request Guidelines](#pull-request-guidelines)
- [Tips](#tips)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->
<!-- prettier-ignore-end -->
</details>

## Report Bugs

Report bugs at <https://github.com/jpscaletti/copier/issues>.
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ clean-pyc:
find . -name '__pycache__' -exec rm -rf {} +
find . -name '.pytest_cache' -exec rm -rf {} +

.PHONY: docs
docs:
mkdocs serve

test:
pytest -x copier tests

Expand Down
Loading

0 comments on commit 3ad2c67

Please sign in to comment.