From 2b649ca8ba4ba9fa06763a5e5a79dcdc44b45ac8 Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Fri, 26 Jan 2018 15:56:17 +0000 Subject: [PATCH] docs: update minimum compatible version and usage. Followup to https://github.com/epoberezkin/ajv-merge-patch/pull/10. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 218aa6b..4cf3019 100644 --- a/README.md +++ b/README.md @@ -93,13 +93,13 @@ See also: ## Usage with Ajv -These keywords are compatible with Ajv version >=4.6.0 and require the option `v5: true`. +These keywords are compatible with Ajv version >=5.1.0-beta.0. To add these keywords to Ajv instance: ```javascript var Ajv = require('ajv'); -var ajv = new Ajv({ v5: true }); +var ajv = new Ajv(); require('ajv-merge-patch')(ajv); ```