Skip to content

Commit

Permalink
Merge pull request #578 from Lexpedite/fix_applicability
Browse files Browse the repository at this point in the history
Fix applicability
  • Loading branch information
Gauntlet173 authored Sep 21, 2023
2 parents 030dbdd + 3ed358a commit 57e9cb5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 0 additions & 2 deletions blawx/ldap.py
Original file line number Diff line number Diff line change
Expand Up @@ -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).
"""
2 changes: 1 addition & 1 deletion blawx/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'.
Expand Down

0 comments on commit 57e9cb5

Please sign in to comment.