CHANGELOG.md in cucumber-4.0.0 vs CHANGELOG.md in cucumber-4.0.1
- old
+ new
@@ -8,10 +8,16 @@
Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CONTRIBUTING.md) for more info on how to contribute to Cucumber.
----
+## [4.0.1](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0...v4.0.1)
+
+### Fixed
+
+* force reference to `diff-lcs` to 1.3 as 1.4 introduced breaking changes.
+
## [4.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...v4.0.0)
### Changed
* `log` method can now be called with non-string objects and will run `.to_s` on them. [#1410](https://github.com/cucumber/cucumber-ruby/issues/1410)
@@ -89,10 +95,10 @@
* The old `load` behaviour is now replaced with a newer `require` behaviour
* Cucumber will (From version 4), now auto-load files using the `require` method
* If you wish to alter this, then you can set a top level config option: `Cucumber.use_legacy_autoloader`
* Like most config options, setting this inside a `spec_helper.rb` or `env.rb` file is advised
* For more information on this change, including why it was made. Please read this
- [Blog Post](www.google.com)
+ [Blog Post](https://cucumber.io/blog/open-source/tweaking-cucumber-rubys-auto-loader/)
([#1349](https://github.com/cucumber/cucumber-ruby/pull/1349),
[#1043](https://github.com/cucumber/cucumber-ruby/issues/1043)
[luke-hill](https://github.com/luke-hill))
### Changed