diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fa8d8f..ef034b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 4.1.0 + +* Add `seed` parameter to `GovukSchemas::RandomExample` to make the random behaviour deterministic. Given the same seed, the same randomised outputs will be returned ([#56](https://github.com/alphagov/govuk_schemas/pull/56)). + # 4.0.1 * Bump the required Ruby version to >= 2.6.x. diff --git a/lib/govuk_schemas/version.rb b/lib/govuk_schemas/version.rb index 5e28c2a..8183ad1 100644 --- a/lib/govuk_schemas/version.rb +++ b/lib/govuk_schemas/version.rb @@ -1,4 +1,4 @@ module GovukSchemas # @private - VERSION = "4.0.1".freeze + VERSION = "4.1.0".freeze end