Skip to content

Commit 38d0b5f

Browse files
committed
New release v2.13
1 parent 1b839d2 commit 38d0b5f

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

.github/workflows/build-and-push-ricgraph-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
env:
77
REGISTRY: ghcr.io/utrechtuniversity
8-
RICGRAPH_VERSION: "2.12"
8+
RICGRAPH_VERSION: "2.13"
99

1010
jobs:
1111
build:

CITATION.cff

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
cff-version: 1.2.0
22
title: "Ricgraph - Research in context graph"
33
type: software
4-
version: "2.12.1"
5-
date-released: "2025-05-07"
4+
version: "2.13"
5+
date-released: "2025-06-11"
66
authors:
77
- given-names: "Rik D.T."
88
family-names: Janssen
@@ -115,6 +115,9 @@ identifiers:
115115
- description: "Ricgraph DOI v2.12.1"
116116
type: doi
117117
value: "10.5281/zenodo.15357960"
118+
- description: "Ricgraph DOI v2.13"
119+
type: doi
120+
value: "10.5281/zenodo.XXXXXXXX"
118121
abstract: >-
119122
Ricgraph, also known as Research in context graph, enables the exploration of
120123
researchers, teams, their results, collaborations, skills, projects, and the

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
# ########################################################################
4545
# These are the versions of the software to be installed.
4646
# ########################################################################
47-
ricgraph_version := 2.12
47+
ricgraph_version := 2.13
4848

4949
# Find latest versions on https://neo4j.com/deployment-center.
5050
neo4j_community_version := 2025.03.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,4 +390,4 @@ please let me know by creating a GitHub *Issue* at the top left of that page.
390390
<!-- Do not change the lines below. The version number will be
391391
modified by script maintenance/update_version.bash -->
392392
This README.md file is part of the
393-
documentation for version 2.12 of Ricgraph - Research in context graph.
393+
documentation for version 2.13 of Ricgraph - Research in context graph.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages = ["ricgraph"]
77

88
[project]
99
name = "ricgraph"
10-
version = "2.12"
10+
version = "2.13"
1111
authors = [
1212
{ name="Rik D.T. Janssen" },
1313
]
@@ -18,7 +18,6 @@ classifiers = [
1818
"Development Status :: 5 - Production/Stable",
1919
"Operating System :: OS Independent",
2020
"Programming Language :: Python :: 3",
21-
"License :: OSI Approved :: MIT License",
2221
]
2322
license = "MIT"
2423
keywords = ["Research in context graph", "Ricgraph", "Ricgraph Explorer",

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pandas
1010
pyalex
1111
ratelimit
1212
requests
13-
ricgraph==2.12
13+
ricgraph==2.13
1414
Sickle
1515
twine
1616
unidecode

ricgraph/ricgraph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
# __version__ should be placed here instead of in __init__.py.
117117
# If not here, it cannot be found when executing something like
118118
# PYTHONPATH=../ricgraph ../bin/python ricgraph_explorer.py
119-
__version__ = '2.12'
119+
__version__ = '2.13'
120120

121121

122122
# ##############################################################################

0 commit comments

Comments
 (0)