diff --git a/docs/_docs/installation/windows.md b/docs/_docs/installation/windows.md index 2809f47b..a4926e9c 100644 --- a/docs/_docs/installation/windows.md +++ b/docs/_docs/installation/windows.md @@ -48,6 +48,18 @@ While 'new' blogs created with Jekyll v3.4 and greater, will have the following gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] ``` +
+
TZInfo 2.0 incompatibility
+

+ v2.0 of the TZInfo library has introduced a change in how timezone offsets are calculated. + This will result in incorrect date and time for your posts when the site is built with Jekyll 3.x on Windows. +

+

+ We therefore recommend that you lock the Timezone library to v1.2 and above by listing + gem 'tzinfo', '~> 1.2' in your Gemfile. +

+
+ ### Auto Regeneration Jekyll uses the `listen` gem to watch for changes when the `--watch` switch is specified during a build or serve. While `listen` has built-in support for UNIX systems, it may require an extra gem for compatibility with Windows.