1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
CHANGES
=======
2.0.2
-----
Release the dependency to >4.2 to be more compatible as a deep dependency
2.0.1
-----
Readme fix
2.0.0
-----
Release the docutil dependency constraint to allow more recent version.
**Breaking change**: In order to be compatible with modern sphinx, the plugin is now in its own
module, and not anymore in the "sphinxcontrib" namespace.
You will need to change you conf.py with the following pseudo patch:
```
- extensions = ['sphinxcontrib.jinja']
+ extensions = ['sphinx_jinja']
```
1.4.0
-----
Implement the header_update_levels flag, which allows jinja blocks to use the same header (titles) level as the parent block.
1.3.0
-----
Use app.srcdir as jinja_base.
This affects people that include files from jinja context and use separate
source and build directories. They should change:
```
.. jinja::
:file: source/test.rst
```
to
```
.. jinja::
:file: test.rst
```
* Add `header_update_levels` option to let headers behave in the same way as
if include via the `include` directive.
1.2.1
-----
untight the dependency on jinja2 from ^2.11 to >=2.11
1.2.0
-----
* switch test to pytest
* Use jinja_base for debug printing template files
* Add Environment customization for kwargs, filters, tests, globals, and policies
* Refactor debug printing and fix urllib import
* Use debug in tests - currently breaks on 3.7+
* Add CI environments for 3.6, 3.7, 3.8, 3.9, and 3.10
* Add requirements to requirements.txt and setup.py
* Add MIT license file
* README.rst: add debug option
* README.rst: fix formatting
1.1.0
-----
* update changelog
* Don't let header\_char modify the default config in-place
* Allow parallel builds
1.0.0
-----
* update changelog
* add github url in home page
* Allow not passing a context (i.e., empty dict)
* Support \`.. include::\` in template
0.3.0
-----
* Update jinja.py
* Update jinja.py
* Update jinja.py
* Extended jinja.py to make it more useful
0.2.1
-----
* fix readme
0.2.0
-----
* Allow jinja directive to use an external jinja template
* fix flake8
* add travisyml
* update readme
* remove changelog from git, as it is autogenerated
* update README
* fix issue with pip install -e
0.1.1
-----
* Fix issue with overwritting content of rst file
0.1.0
-----
* initial commit
|