From c76956305fbda069fe269284a533dacf20d07b5b Mon Sep 17 00:00:00 2001 From: Patrick Hochstenbach Date: Sat, 26 Aug 2023 13:12:59 +0200 Subject: [PATCH] Version up --- Changes | 5 +++-- package.json | 2 +- src/orch.ts | 2 +- src/pol.ts | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Changes b/Changes index 741c96d..55126c4 100644 --- a/Changes +++ b/Changes @@ -1,8 +1,9 @@ -2023-08-26 +2023-08-26 0.4.3 - Reverted the context_cache the caches are implementd for parsing and serialization utilities via a new contextloader - Supporting activitystreams and coar notify local caching for now - + - Adding tests + 2023-08-25 0.4.2 - Supporting 'context_cache' for SendNotificationPlugin (a local cache of JSON-LD contexts) diff --git a/package.json b/package.json index 2100168..4835fa8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "koreografeye", "description": "A Solid choreography / orchestrator agent with a reasoning component", - "version": "0.4.2", + "version": "0.4.3", "homepage": "", "license": "MIT", "author": "Patrick Hochstenbach ", diff --git a/src/orch.ts b/src/orch.ts index 57ca1f2..8619f30 100755 --- a/src/orch.ts +++ b/src/orch.ts @@ -23,7 +23,7 @@ const POL_MAIN_SUBJECT = 'https://www.example.org/ns/policy#mainSubject'; const POL_ORIGIN = 'https://www.example.org/ns/policy#origin'; let orchConf = './config.jsonld'; -program.version('0.4.2') +program.version('0.4.3') .argument('') .option('-c,--config ','config file') .option('-i,--in ','input directory') diff --git a/src/pol.ts b/src/pol.ts index 3c52ee1..b65ee4a 100755 --- a/src/pol.ts +++ b/src/pol.ts @@ -16,7 +16,7 @@ import { ComponentsManager } from 'componentsjs'; let pluginConf = './config.jsonld'; -program.version('0.4.2') +program.version('0.4.3') .option('-c,--config ', 'configuration file') .option('-i,--in ','input directory') .option('-e,--err ','error directory')