diff options
| author | Shulhan <ms@kilabit.info> | 2024-12-08 21:03:01 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2024-12-08 21:06:49 +0700 |
| commit | d4b59bd3cefeb40c5c59f5bf79d10d48e725b0f3 (patch) | |
| tree | 6cd05e258d2915cd2562da57f783068f0e71bb3f /asciidoctor.go | |
| parent | 48b753829937f060439c7020f41cf2461a22fcf2 (diff) | |
| download | asciidoctor-go-0.6.1.tar.xz | |
Release asciidoctor-go v0.6.1 (2024-12-08)v0.6.1
=== Bug fixes
* all: fix error log when failed to open included file::
The log use the wrong variable when printing path for failed include
file.
* all: fix reading include file when parent path is absolute::
Previously, if the parent document is opened using absolute path and
it contains include directive, the included file will fail to read
because the parent path is joined with current working directory.
Diffstat (limited to 'asciidoctor.go')
| -rw-r--r-- | asciidoctor.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asciidoctor.go b/asciidoctor.go index 76b2f26..8ddfdc4 100644 --- a/asciidoctor.go +++ b/asciidoctor.go @@ -11,7 +11,7 @@ import "git.sr.ht/~shulhan/pakakeh.go/lib/math/big" const ( // Version of this module. - Version = `0.6.0` + Version = `0.6.1` _lf = "\n" ) |
