From 55b07f4ff62c31dd8a0fe9e694dfffc6f4d075b8 Mon Sep 17 00:00:00 2001 From: Patrick Hochstenbach Date: Wed, 30 Aug 2023 11:32:36 +0200 Subject: [PATCH] Adding missing experimental ordering of policy executions --- Changes | 3 +++ package.json | 2 +- src/orch.ts | 2 +- src/pol.ts | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 55126c4..75c7eee 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,6 @@ +2023-08-30 0.4.4 + - Adding missing experimental support for ordering + 2023-08-26 0.4.3 - Reverted the context_cache the caches are implementd for parsing and serialization utilities via a new contextloader diff --git a/package.json b/package.json index 4835fa8..fe2e4ed 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.3", + "version": "0.4.4", "homepage": "", "license": "MIT", "author": "Patrick Hochstenbach ", diff --git a/src/orch.ts b/src/orch.ts index 8619f30..34a3db1 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.3') +program.version('0.4.4') .argument('') .option('-c,--config ','config file') .option('-i,--in ','input directory') diff --git a/src/pol.ts b/src/pol.ts index b65ee4a..ad4f1f8 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.3') +program.version('0.4.4') .option('-c,--config ', 'configuration file') .option('-i,--in ','input directory') .option('-e,--err ','error directory')