diff --git a/CHANGELOG.md b/CHANGELOG.md index dc1d6b2..c76e618 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +Version 0.3 (2019-04-30) +----- + +Changes: + +* Support other methods for watching file system: `inotifywait` for Linux and a built-in one for Windows. +* Fix `--no-*` options. + Version 0.2 (2019-02-22) ----- diff --git a/bin/cluttex b/bin/cluttex index 672d58c..dfbd5c5 100755 --- a/bin/cluttex +++ b/bin/cluttex @@ -2579,7 +2579,7 @@ end along with ClutTeX. If not, see . ]] -CLUTTEX_VERSION = "v0.2" +CLUTTEX_VERSION = "v0.3" -- Standard libraries local coroutine = coroutine diff --git a/bin/cluttex.bat b/bin/cluttex.bat index 8688c06..7570923 100644 --- a/bin/cluttex.bat +++ b/bin/cluttex.bat @@ -2582,7 +2582,7 @@ end along with ClutTeX. If not, see . ]] -CLUTTEX_VERSION = "v0.2" +CLUTTEX_VERSION = "v0.3" -- Standard libraries local coroutine = coroutine diff --git a/src/cluttex.lua b/src/cluttex.lua index d03c22a..92952af 100644 --- a/src/cluttex.lua +++ b/src/cluttex.lua @@ -18,7 +18,7 @@ along with ClutTeX. If not, see . ]] -CLUTTEX_VERSION = "v0.2" +CLUTTEX_VERSION = "v0.3" -- Standard libraries local table = table