From de5d7e0d398679993d7b72df94ec6c17e4299529 Mon Sep 17 00:00:00 2001 From: Gauntlet173 Date: Thu, 21 Sep 2023 12:55:35 -0600 Subject: [PATCH 1/2] remove redundant applicability rules --- blawx/ldap.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/blawx/ldap.py b/blawx/ldap.py index e93cb983..10b0daa5 100644 --- a/blawx/ldap.py +++ b/blawx/ldap.py @@ -9,6 +9,4 @@ #pred according_to(X,-blawx_applies,Y,Z) :: 'according to @(X) it is not the case that @(Y) applies to @(Z)'. #pred defeated(X,blawx_applies,Y,Z) :: 'the conclusion in @(X) that @(Y) applies to @(Z) is defeated'. #pred defeated(X,-blawx_applies,Y,Z) :: 'the conclusion in @(X) that it is not the case that @(Y) applies to @(Z) is defeated'. --blawx_applies(X,Y) :- holds(_,-blawx_applies,X,Y). -blawx_applies(X,Y) :- holds(_,blawx_applies,X,Y). """ \ No newline at end of file From 3ed358ae8809bba4483751081833810887ef04d9 Mon Sep 17 00:00:00 2001 From: Gauntlet173 Date: Thu, 21 Sep 2023 12:59:56 -0600 Subject: [PATCH 2/2] update changelog and version --- CHANGELOG.md | 7 +++++++ blawx/settings.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e911bbc0..92efd11c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ As of v0.2-alpha, this project is attempting to adhere to [Semantic Versioning]( While alpha, however, any version may include breaking changes that may not be specifically noted as such, and breaking changes will not necessarily result in changes to the main version number. +## [v1.6.20-alpha](https://github.com/Lexpedite/blawx/releases/tag/v1.6.20-alpha) 2023-09-21 + +This release is backwards compatible with v1.6.19-alpha. + +### Fixes +* Applies Blocks cause slow-downs in code speed. + ## [v1.6.19-alpha](https://github.com/Lexpedite/blawx/releases/tag/v1.6.19-alpha) 2023-07-27 This release includes bug-fixes. diff --git a/blawx/settings.py b/blawx/settings.py index 2a185823..1b11b56f 100644 --- a/blawx/settings.py +++ b/blawx/settings.py @@ -13,7 +13,7 @@ from pathlib import Path # For adding a version identifier -BLAWX_VERSION = "v1.6.19-alpha" +BLAWX_VERSION = "v1.6.20-alpha" # Build paths inside the project like this: BASE_DIR / 'subdir'.