Skip to content

Commit

Permalink
Prepare 1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
neesjanvaneck committed Aug 15, 2023
1 parent 6be2349 commit 26b7ae9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ repository-code: "https://github.com/CWTSLeiden/networkanalysis"
repository-artifact: "https://central.sonatype.com/artifact/nl.cwts/networkanalysis/"
license: MIT
doi: 10.5281/zenodo.1466830
version: 1.1.0
date-released: 2020-11-04
version: 1.2.0
date-released: 2023-08-15
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ The documentation is also available in a [compiled format](https://CWTSLeiden.gi
<dependency>
<groupId>nl.cwts</groupId>
<artifactId>networkanalysis</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
</dependency>
```

### Gradle

```
implementation group: 'nl.cwts', name: 'networkanalysis', version: '1.1.0'
implementation group: 'nl.cwts', name: 'networkanalysis', version: '1.2.0'
```

## Usage
Expand All @@ -48,13 +48,13 @@ To run the clustering algorithms, the command-line tool `RunNetworkClustering` i
The tool can be run as follows:

```
java -cp networkanalysis-1.1.0.jar nl.cwts.networkanalysis.run.RunNetworkClustering
java -cp networkanalysis-1.2.0.jar nl.cwts.networkanalysis.run.RunNetworkClustering
```

If no further arguments are provided, the following usage notice will be displayed:

```
RunNetworkClustering version 1.1.0
RunNetworkClustering version 1.2.0
By Vincent Traag, Ludo Waltman, and Nees Jan van Eck
Centre for Science and Technology Studies (CWTS), Leiden University
Expand Down Expand Up @@ -112,13 +112,13 @@ To run the layout algorithm, the command-line tool `RunNetworkLayout` is provide
The tool can be run as follows:

```
java -cp networkanalysis-1.1.0.jar nl.cwts.networkanalysis.run.RunNetworkLayout
java -cp networkanalysis-1.2.0.jar nl.cwts.networkanalysis.run.RunNetworkLayout
```

If no further arguments are provided, the following usage notice will be displayed:

```
RunNetworkLayout version 1.1.0
RunNetworkLayout version 1.2.0
By Nees Jan van Eck and Ludo Waltman
Centre for Science and Technology Studies (CWTS), Leiden University
Expand Down Expand Up @@ -211,7 +211,7 @@ Nodes must be represented by integer numbers starting from 0.
Assuming that the edge list has been saved in the file `network.txt`, the `RunNetworkClustering` tool can be run as follows:

```
java -cp networkanalysis-1.1.0.jar nl.cwts.networkanalysis.run.RunNetworkClustering -r 0.2 -o clusters.txt network.txt
java -cp networkanalysis-1.2.0.jar nl.cwts.networkanalysis.run.RunNetworkClustering -r 0.2 -o clusters.txt network.txt
```

In this case, clusters are identified using the Leiden algorithm.
Expand All @@ -236,7 +236,7 @@ Cluster 1 includes nodes 3, 4, and 5.
The `RunNetworkLayout` tool can be run as follows:

```
java -cp networkanalysis-1.1.0.jar nl.cwts.networkanalysis.run.RunNetworkLayout -o layout.txt network.txt
java -cp networkanalysis-1.2.0.jar nl.cwts.networkanalysis.run.RunNetworkLayout -o layout.txt network.txt
```

In this case, the default parameter values are used for the VOS layout technique.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public final class RunNetworkClustering
* Description text.
*/
public static final String DESCRIPTION
= "RunNetworkClustering version 1.1.0\n"
= "RunNetworkClustering version 1.2.0\n"
+ "By Vincent Traag, Ludo Waltman, and Nees Jan van Eck\n"
+ "Centre for Science and Technology Studies (CWTS), Leiden University\n";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public class RunNetworkLayout
* Description text.
*/
public static final String DESCRIPTION
= "RunNetworkLayout version 1.1.0\n"
= "RunNetworkLayout version 1.2.0\n"
+ "By Nees Jan van Eck and Ludo Waltman\n"
+ "Centre for Science and Technology Studies (CWTS), Leiden University\n";

Expand Down

0 comments on commit 26b7ae9

Please sign in to comment.