Skip to content

Commit

Permalink
version bump to 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Reitz committed May 12, 2023
1 parent 5009464 commit 2b769dc
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
### v0.1.4
<details>
<summary>Released 2023-05-12</summary>

* bugfix: `config.state`_file was being ignored when specified
* bugfix: further issues with multi-line `config.macros` - the resolution here (hopefully the last one!) is to pre-load macros (so they can be injected into run-time Jinja contexts) and then just allow the Jinja to render and macro definitions down to nothing in the config YAML... you do have to be careful with Jinja linebreak supression, i.e.
```yaml
config:
macros: > # this is a macro!
{%- macro test() -%}
testing!
{%- endmacro -%}
sources:
...
```
could render down to
```yaml
config:
macros: > # this is a macro!sources:
...
```
which will fail with an error about no sources defined.

* bugfix: charset issues when reading / writing non-UTF8 files - this should be resolved by enforcing every file read/write to specify UTF8 encoding

</details>

### v0.1.3
<details>
<summary>Released 2023-05-05</summary>
Expand Down
2 changes: 1 addition & 1 deletion earthmover/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.3
0.1.4

0 comments on commit 2b769dc

Please sign in to comment.