diff --git a/CHANGELOG.md b/CHANGELOG.md index 630b1c9..5a3cbb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## v2.2.0 - 2021, Aug + +- improve output/logging +- add option for JSON output +- enumerate mics using an iterator +- use clingo 5.5.0 via clingo-rs 0.7.0 ## v2.1.1 - 2020, Mar 11 diff --git a/Cargo.toml b/Cargo.toml index eea85b0..9b95ff8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iggy" -version = "2.1.1" +version = "2.2.0" authors = ["Sven Thiele "] description = "Influence graph analysis, consistency check, diagnosis, repair and prediction." readme = "README.md" diff --git a/README.md b/README.md index bfc5315..36d03ad 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ For more options you can ask for help as follows: ```txt > iggy -h -iggy 2.1.1 +iggy 2.2.0 Sven Thiele Iggy confronts interaction graph models with observations of (signed) changes between two measured states (including uncertain observations). Iggy discovers inconsistencies in networks or data, @@ -75,7 +75,7 @@ For more options you can ask for help as follows: ```txt > optgraph -h -optgraph 2.1.1 +optgraph 2.2.0 Sven Thiele Optgraph confronts interaction graph models with observations of (signed) changes between two measured states. Opt-graph computes networks fitting the observation data by removing (or adding) a @@ -103,4 +103,4 @@ OPTIONS: -m, --repair-mode Repair mode: remove = remove edges (default), optgraph = add + remove edges, flip = flip direction of edges -``` \ No newline at end of file +``` diff --git a/docs/guide/guide.html b/docs/guide/guide.html index 406e708..899b708 100644 --- a/docs/guide/guide.html +++ b/docs/guide/guide.html @@ -262,7 +262,7 @@
-

Iggy - User Guide (version 2.1.1)

+

Iggy - User Guide (version 2.2.0)

Sven Thiele

What are iggy and optgraph

@@ -396,7 +396,7 @@

Iggy

For more options, you can ask for help as follows:

> iggy -h
-iggy 2.1.1
+iggy 2.2.0
 Sven Thiele <sthiele78@gmail.com>
 Iggy confronts interaction graph models with observations of (signed) changes between two measured
 states (including uncertain observations). Iggy discovers inconsistencies in networks or data,
@@ -691,7 +691,7 @@ 

Optgraph

For more options, you can ask for help as follows:

> optgraph -h
-optgraph 2.1.1
+optgraph 2.2.0
 Sven Thiele <sthiele78@gmail.com>
 Optgraph confronts interaction graph models with observations of (signed) changes between two
 measured states. Opt-graph computes networks fitting the observation data by removing (or adding) a
diff --git a/docs/guide/guide.md b/docs/guide/guide.md
index a5a328d..24013fc 100644
--- a/docs/guide/guide.md
+++ b/docs/guide/guide.md
@@ -1,4 +1,4 @@
-# Iggy - User Guide (version 2.1.1)
+# Iggy - User Guide (version 2.2.0)
 
 Sven Thiele
 
@@ -137,7 +137,7 @@ For more options, you can ask for help as follows:
 
 ```txt
 > iggy -h
-iggy 2.1.1
+iggy 2.2.0
 Sven Thiele 
 Iggy confronts interaction graph models with observations of (signed) changes between two measured
 states (including uncertain observations). Iggy discovers inconsistencies in networks or data,
@@ -465,7 +465,7 @@ For more options, you can ask for help as follows:
 
 ```txt
 > optgraph -h
-optgraph 2.1.1
+optgraph 2.2.0
 Sven Thiele 
 Optgraph confronts interaction graph models with observations of (signed) changes between two
 measured states. Opt-graph computes networks fitting the observation data by removing (or adding) a
diff --git a/docs/index.md b/docs/index.md
index c6885cd..3657cda 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -41,7 +41,7 @@ For more options you can ask for help as follows:
 
 ```txt
 > iggy -h
-iggy 2.1.1
+iggy 2.2.0
 Sven Thiele 
 Iggy confronts interaction graph models with observations of (signed) changes between two measured
 states (including uncertain observations). Iggy discovers inconsistencies in networks or data,
@@ -83,7 +83,7 @@ For more options you can ask for help as follows:
 
 ```txt
 > optgraph -h
-optgraph 2.1.1
+optgraph 2.2.0
 Sven Thiele 
 Optgraph confronts interaction graph models with observations of (signed) changes between two
 measured states. Opt-graph computes networks fitting the observation data by removing (or adding) a
diff --git a/src/bin/iggy.rs b/src/bin/iggy.rs
index 8fd4632..176a5e7 100644
--- a/src/bin/iggy.rs
+++ b/src/bin/iggy.rs
@@ -23,7 +23,7 @@ use iggy::*;
 /// node) and weak predictions (e.g., the value of a node increases or remains unchanged).
 
 #[derive(Clap, Debug)]
-#[clap(version = "2.1.1", author = "Sven Thiele ")]
+#[clap(version = "2.2.0", author = "Sven Thiele ")]
 struct Opt {
     /// Influence graph in CIF format
     #[clap(short = 'n', long = "network", parse(from_os_str))]
diff --git a/src/bin/optgraph.rs b/src/bin/optgraph.rs
index bab3339..581d6e9 100644
--- a/src/bin/optgraph.rs
+++ b/src/bin/optgraph.rs
@@ -19,7 +19,7 @@ use thiserror::Error;
 #[derive(Clap, Debug)]
 #[clap(
     name = "optgraph",
-    version = "2.1.1",
+    version = "2.2.0",
     author = "Sven Thiele "
 )]
 struct Opt {