Skip to content

Commit

Permalink
Create fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
blokhin committed Feb 5, 2024
1 parent 814bfe9 commit a44eb59
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Build and test pyfactxx
name: Build and test pyfactxx

on:
workflow_dispatch:
push:
branches: [ $default-branch, "wheels" ]
pull_request:
Expand Down Expand Up @@ -34,4 +35,4 @@ jobs:
- name: Test with pytest
working-directory: ./FaCT++.Python
run: |
pytest pyfactxx
pytest pyfactxx
10 changes: 5 additions & 5 deletions Kernel/Kernel.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This file is part of the FaCT++ DL reasoner
Copyright (C) 2003-2015 Dmitry Tsarkov and The University of Manchester
Copyright (C) 2015-2017 Dmitry Tsarkov
Copyright (C) 2021-2022 Ivan Rygaev and Tilde MI
Copyright (C) 2021-2024 Ivan Rygaev and Tilde MI
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
Expand All @@ -27,11 +27,11 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#include "SaveLoadManager.h"
#include "TripleGatherer.h"

const char* ReasoningKernel :: Version = "1.8.1-SNAPSHOT";
const char* ReasoningKernel :: Version = "1.8.2-SNAPSHOT";
const char* ReasoningKernel :: SupportedDL = "SROIQ(D)";
const char* ReasoningKernel :: Copyright =
"Copyright (C) Dmitry Tsarkov, Ivan Rygaev, 2002-2022";
const char* ReasoningKernel :: ReleaseDate = "21 June 2022";
"Copyright (C) Dmitry Tsarkov, Ivan Rygaev, 2002-2024";
const char* ReasoningKernel :: ReleaseDate = "2 February 2024";

// print the FaCT++ information only once
static bool KernelFirstRun = true;
Expand Down Expand Up @@ -1135,7 +1135,7 @@ void ReasoningKernel::getTriples(const std::string& q_subj_name, const std::stri

getORoleDomain(q_subj_o_role_exp, true, gatherer);
}

if (q_role_name.empty() || q_role_name == RDFS_RANGE)
{
TripleGatherer gatherer(&triples, true, RDFS_RANGE, q_subj_name.c_str(), [q_subj, q_obj_name, q_obj](const ClassifiableEntry* entry)
Expand Down

0 comments on commit a44eb59

Please sign in to comment.