Skip to content

Commit

Permalink
Prepare 1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
neesjanvaneck committed Aug 19, 2023
1 parent eeb42ac commit 8c79c51
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 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.2.0
date-released: 2023-08-15
version: 1.3.0
date-released: 2023-08-19
18 changes: 9 additions & 9 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.2.0</version>
<version>1.3.0</version>
</dependency>
```

### Gradle

```
implementation group: 'nl.cwts', name: 'networkanalysis', version: '1.2.0'
implementation group: 'nl.cwts', name: 'networkanalysis', version: '1.3.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.2.0.jar nl.cwts.networkanalysis.run.RunNetworkClustering
java -cp networkanalysis-1.3.0.jar nl.cwts.networkanalysis.run.RunNetworkClustering
```

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

```
RunNetworkClustering version 1.2.0
RunNetworkClustering version 1.3.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.2.0.jar nl.cwts.networkanalysis.run.RunNetworkLayout
java -cp networkanalysis-1.3.0.jar nl.cwts.networkanalysis.run.RunNetworkLayout
```

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

```
RunNetworkLayout version 1.2.0
RunNetworkLayout version 1.3.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.2.0.jar nl.cwts.networkanalysis.run.RunNetworkClustering -r 0.2 -o clusters.txt network.txt
java -cp networkanalysis-1.3.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.2.0.jar nl.cwts.networkanalysis.run.RunNetworkLayout -o layout.txt network.txt
java -cp networkanalysis-1.3.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 Expand Up @@ -309,7 +309,7 @@ The `RunNetworkLayout` tool can be run as follows:
java -cp build/libs/networkanalysis-<version>.jar nl.cwts.networkanalysis.run.RunNetworkLayout
```

### References
## References

> Traag, V.A., Waltman, L., & Van Eck, N.J. (2019). From Louvain to Leiden: Guaranteeing well-connected communities. *Scientific Reports*, 9, 5233. https://doi.org/10.1038/s41598-019-41695-z
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.2.0\n"
= "RunNetworkClustering version 1.3.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.2.0\n"
= "RunNetworkLayout version 1.3.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 8c79c51

Please sign in to comment.