Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
sthiele committed Aug 27, 2021
1 parent a2d3f5a commit f5c9980
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 14 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iggy"
version = "2.1.1"
version = "2.2.0"
authors = ["Sven Thiele <sthiele78@gmail.com>"]
description = "Influence graph analysis, consistency check, diagnosis, repair and prediction."
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <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,
Expand Down Expand Up @@ -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 <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
Expand Down Expand Up @@ -103,4 +103,4 @@ OPTIONS:
-m, --repair-mode <repair-mode>
Repair mode: remove = remove edges (default), optgraph = add + remove edges, flip = flip
direction of edges
```
```
6 changes: 3 additions & 3 deletions docs/guide/guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@
</head>
<body for="html-export">
<div class="mume markdown-preview ">
<h1 class="mume-header" id="iggy-user-guide-version-211">Iggy - User Guide (version 2.1.1)</h1>
<h1 class="mume-header" id="iggy-user-guide-version-211">Iggy - User Guide (version 2.2.0)</h1>

<p>Sven Thiele</p>
<h2 class="mume-header" id="what-are-iggy-and-optgraph">What are <code>iggy</code> and <code>optgraph</code></h2>
Expand Down Expand Up @@ -396,7 +396,7 @@ <h2 class="mume-header" id="iggy">Iggy</h2>
</pre>
<p>For more options, you can ask for help as follows:</p>
<pre data-role="codeBlock" data-info="txt" class="language-txt"><code>&gt; iggy -h
iggy 2.1.1
iggy 2.2.0
Sven Thiele &lt;sthiele78@gmail.com&gt;
Iggy confronts interaction graph models with observations of (signed) changes between two measured
states (including uncertain observations). Iggy discovers inconsistencies in networks or data,
Expand Down Expand Up @@ -691,7 +691,7 @@ <h2 class="mume-header" id="optgraph">Optgraph</h2>
</pre>
<p>For more options, you can ask for help as follows:</p>
<pre data-role="codeBlock" data-info="txt" class="language-txt"><code>&gt; optgraph -h
optgraph 2.1.1
optgraph 2.2.0
Sven Thiele &lt;sthiele78@gmail.com&gt;
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
Expand Down
6 changes: 3 additions & 3 deletions docs/guide/guide.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Iggy - User Guide (version 2.1.1)
# Iggy - User Guide (version 2.2.0)

Sven Thiele

Expand Down Expand Up @@ -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 <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,
Expand Down Expand Up @@ -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 <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
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <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,
Expand Down Expand Up @@ -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 <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
Expand Down
2 changes: 1 addition & 1 deletion src/bin/iggy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 <sthiele78@gmail.com>")]
#[clap(version = "2.2.0", author = "Sven Thiele <sthiele78@gmail.com>")]
struct Opt {
/// Influence graph in CIF format
#[clap(short = 'n', long = "network", parse(from_os_str))]
Expand Down
2 changes: 1 addition & 1 deletion src/bin/optgraph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use thiserror::Error;
#[derive(Clap, Debug)]
#[clap(
name = "optgraph",
version = "2.1.1",
version = "2.2.0",
author = "Sven Thiele <sthiele78@gmail.com>"
)]
struct Opt {
Expand Down

0 comments on commit f5c9980

Please sign in to comment.