From e176ceab53434690de59eda9d21bce51d22239c8 Mon Sep 17 00:00:00 2001 From: Jarvis Date: Tue, 21 Apr 2026 19:37:56 +0800 Subject: [PATCH 1/2] feat: release v0.9.10 --- rockspec/jsonschema-0.9.10-0.rockspec | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 rockspec/jsonschema-0.9.10-0.rockspec diff --git a/rockspec/jsonschema-0.9.10-0.rockspec b/rockspec/jsonschema-0.9.10-0.rockspec new file mode 100644 index 0000000..8d46df9 --- /dev/null +++ b/rockspec/jsonschema-0.9.10-0.rockspec @@ -0,0 +1,32 @@ +package = "jsonschema" +version = "0.9.10-0" +source = { + url = "git://github.com/api7/jsonschema.git", + tag = "v0.9.10", +} + +description = { + summary = "JSON Schema data validator", + detailed = [[ +This module is data validator the implements JSON Schema draft 4. +Given an JSON schema, it will generates a validator function that can be used +to validate any kind of data (not limited to JSON). + +Base on https://github.com/jdesgats/ljsonschema . +]], + homepage = "https://github.com/api7/jsonschema", + license = "Apache License 2.0", +} + +dependencies = { + "net-url", + "lrexlib-pcre = 2.9.1-1", +} + +build = { + type = "builtin", + modules = { + ["jsonschema"] = "lib/jsonschema.lua", + ["jsonschema.store"] = "lib/jsonschema/store.lua", + } +} From 878d4c6e227c6836304bfc116b85b2cc27d014f3 Mon Sep 17 00:00:00 2001 From: Jarvis Date: Tue, 21 Apr 2026 19:43:26 +0800 Subject: [PATCH 2/2] fix: correct grammatical errors in rockspec description --- rockspec/jsonschema-0.9.10-0.rockspec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rockspec/jsonschema-0.9.10-0.rockspec b/rockspec/jsonschema-0.9.10-0.rockspec index 8d46df9..7ec0ceb 100644 --- a/rockspec/jsonschema-0.9.10-0.rockspec +++ b/rockspec/jsonschema-0.9.10-0.rockspec @@ -8,11 +8,11 @@ source = { description = { summary = "JSON Schema data validator", detailed = [[ -This module is data validator the implements JSON Schema draft 4. -Given an JSON schema, it will generates a validator function that can be used +This module is a data validator that implements JSON Schema draft 4. +Given a JSON schema, it will generate a validator function that can be used to validate any kind of data (not limited to JSON). -Base on https://github.com/jdesgats/ljsonschema . +Based on https://github.com/jdesgats/ljsonschema . ]], homepage = "https://github.com/api7/jsonschema", license = "Apache License 2.0",