Skip to content

Commit 6ed7f6d

Browse files
authored
Merge pull request #23 from hu-macsy/version_1_release
Version 1: Release -> preparation
2 parents 817bc3c + ceb93a2 commit 6ed7f6d

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
cmake_minimum_required(VERSION 3.14)
33

44
# Set project name and version
5-
project(gdsb VERSION 0.2.0 LANGUAGES CXX)
5+
project(gdsb VERSION 1.0.0 LANGUAGES CXX)
66

77
include(GNUInstallDirs)
88

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Modeling and Analysis of Complex Systems @ HU Berlin
3+
Copyright (c) 2022 - 2025 Modeling and Analysis of Complex Systems @ HU Berlin
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# Graph Data Structure Benchmark GDSB
1+
# GDSB: Graph Data Structures & Benchmark
22

33
<p align="center">
44
<a href="https://github.com/hu-macsy/graph-ds-benchmark/actions/workflows/ci.yml"><img src="https://github.com/hu-macsy/graph-ds-benchmark/actions/workflows/ci.yml/badge.svg"></a>
55
</p>
66

7-
This library offers various tools for graph data structure experiments including:
8-
- graph file I/O, see [graph_io.h](/include/gdsb/graph_io.h)
7+
The GDSB library offers various tools for graph data structures and experiments using benchmark functionality including:
8+
- standard POSIX I/O graph file I/O, see [graph_input.h](/include/gdsb/graph_input.h), [graph_output.h](/include/gdsb/graph_input.h), and [graph_io_parameters.h](/include/gdsb/graph_io_parameters.h)
9+
- full support to read GDSB binary graph files using MPI I/O, see [mpi_graph_io.h](/include/gdsb/mpi_graph_io.h), [mpi_error_handler.h](/include/gdsb/mpi_error_handler.h)
910
- graph and edge data structures, see [graph.h](/include/gdsb/graph.h)
1011
- experiment environment to benchmark procedures, see
1112
[experiment.h](/include/gdsb/experiment.h)
@@ -17,6 +18,16 @@ This library offers various tools for graph data structure experiments including
1718

1819
## Releases
1920

21+
### Version 1.0
22+
23+
First feature complete version of GDSB, now also with full support to read and
24+
write graph files. As a new feature, we offer MPI graph file read functionality
25+
using our binary format.
26+
27+
| Version Number | Tag | URL |
28+
| -------------------------|-----------|------------------------------------------------------------|
29+
| `1.0.0` | `v1.0.0` | |
30+
2031
### Version 0.2.0
2132

2233
A complete revision of graph file I/O to read edges from a file reducing the

0 commit comments

Comments
 (0)