Skip to content

Commit

Permalink
Update version numbers and changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
luciansmith committed Mar 14, 2024
1 parent a075c95 commit ba189f1
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/BioPortal-submission.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"ontology": "https://data.bioontology.org/ontologies/KISAO",
"pullLocation": "https://raw.githubusercontent.com/SED-ML/KiSAO/2.32/kisao.owl",
"pullLocation": "https://raw.githubusercontent.com/SED-ML/KiSAO/2.34/kisao.owl",
"hasOntologyLanguage": "OWL",
"description": "The Kinetic Simulation Algorithm Ontology (KiSAO) is an ontology of algorithms for simulating and analyzing biological models, as well as the characteristics of these algorithms, their input parameters, and their outputs. In addition, KiSAO captures relationships among algorithms, their parameters, and their outputs.",
"version": "2.32",
"version": "2.34",
"released": "2023-05-24T02:54:00-00:00",
"status": "production",
"homepage": "http://biomodels.net/kisao/",
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 2.34 (OWL 2)
- Added organizational 'DAE solver' (`KISAO_0000699`) for collecting solvers that can solve DAE problems.
- Removed 'has characteristic' some 'differential-algebraic equation problem' from KINSOL and from 'method for solving a system of linear equations'.
- The characteristics 'differential-algebraic equation problem' and ''ordinary differential equation problem' are no longer disjoint (and in fact the former are a complete subset of the latter).

## 2.33 (OWL 2)
- Reorganized the steady state algorithms: moved flux balance and steady state to 'general steady state method' (`KISAO_0000630`), and others to the 'steady state root-finding method' (`KISAO_0000407`)

## 2.32 (OWL 2)
- Added algorithm concepts for eQuilibrator.
- Added organizational 'ODE solver' (`KISAO_0000694`) for noting in SED-ML that some solver should be used, but which is not important.
Expand Down
2 changes: 1 addition & 1 deletion kisao.owl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<rdfs:label xml:lang="en">Kinetic Simulation Algorithm Ontology (KiSAO)</rdfs:label>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://co.mbine.org/standards/kisao</rdfs:seeAlso>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://identifiers.org/pubmed/22027554</rdfs:seeAlso>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">2.32</owl:versionInfo>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">2.34</owl:versionInfo>
<skos:definition xml:lang="en">The Kinetic Simulation Algorithm Ontology (KiSAO) classifies algorithms available for the simulation and analysis of models in biology, and their characteristics and the parameters required for their use.</skos:definition>
</owl:Ontology>

Expand Down
2 changes: 1 addition & 1 deletion kisao_full.owl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<rdfs:comment xml:lang="en">Kinetic Simulation Algorithm Ontology (full version, containing deprecated classes)</rdfs:comment>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://co.mbine.org/standards/kisao</rdfs:seeAlso>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://identifiers.org/pubmed/22027554</rdfs:seeAlso>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">2.33</owl:versionInfo>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">2.34</owl:versionInfo>
<skos:definition xml:lang="en">The Kinetic Simulation Algorithm Ontology (KiSAO) classifies algorithms available for the simulation and analysis of models in biology, and their characteristics and the parameters required for their use.</skos:definition>
</owl:Ontology>

Expand Down
2 changes: 1 addition & 1 deletion libkisao/python/kisao/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.33'
__version__ = '2.34'
10 changes: 10 additions & 0 deletions updating.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# What needs to be updated when making a new release

Put new version into:
* libkisao/python/kisao/_version.py
* kisao.owl (i.e. <owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">2.34</owl:versionInfo>)
* kisao_full.owl (i.e. <owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">2.34</owl:versionInfo>)
* .github/workflows/BioPortal-submission.json

Summarize changes in:
* CHANGELOG.md

0 comments on commit ba189f1

Please sign in to comment.