Skip to content

Commit 348d2ce

Browse files
committed
Squashed commit of the following:
commit fc664c1 Author: Ko van der Sloot <Ko.vanderSloot@ziggo.nl> Date: Tue Dec 9 11:23:28 2025 +0100 entering 2026 also run CI on develop branch fix CI
1 parent a91223a commit 348d2ce

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

.github/workflows/dimbl.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ on:
55
schedule:
66
- cron: "10 04 3 * *" # run test on 3-th of month at 04:10
77
push:
8-
branches: [master]
8+
branches:
9+
- master
10+
- develop
911
paths:
1012
- configure.ac
1113
- 'src/**'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Distributed Tilburg Memory Based Learner
88
=======================================
99

10-
Dimbl utils 0.17 (c) ILK/CLST 1998 - 2024
10+
Dimbl utils 0.17 (c) ILK/CLST 1998 - 2026
1111
by Ko van der Sloot
1212

1313
Tilburg centre for Cognition and Communication, Tilburg University.

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"@type": "SoftwareSourceCode",
88
"identifier": "dimbl",
99
"name": "DiMBL",
10-
"version": "0.18",
10+
"version": "0.19",
1111
"description": "DiMBL is an open source software package implementing a distributed front-end for TiMBL: A package that several memory-based learning algorithms, among which IB1-IG, an implementation of k-nearest neighbor classification with feature weighting suitable for symbolic feature spaces, and IGTree, a decision-tree approximation of IB1-IG. All implemented algorithms have in common that they store some representation of the training set explicitly in memory. During testing, new cases are classified by extrapolation from the most similar stored cases.",
1212
"license": "https://spdx.org/licenses/GPL-3.0",
1313
"url": "https://languagemachines.github.io/dimbl",

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.69])
5-
AC_INIT([dimbl],[0.18],[lamasoftware@science.ru.nl]) #also adapt in codemeta.json!
5+
AC_INIT([dimbl],[0.19],[lamasoftware@science.ru.nl]) #also adapt in codemeta.json!
66
AM_INIT_AUTOMAKE
77
AC_CONFIG_SRCDIR([configure.ac])
88
AC_CONFIG_MACRO_DIR([m4])

include/dimbl/DimProcs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2006 - 2024
2+
Copyright (c) 2006 - 2026
33
CLST - Radboud University
44
ILK - Tilburg University
55
CLiPS - University of Antwerp

src/DimProcs.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2006 - 2024
2+
Copyright (c) 2006 - 2026
33
CLST - Radboud University
44
ILK - Tilburg University
55
CLiPS - University of Antwerp

src/Dimbl.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2006 - 2024
2+
Copyright (c) 2006 - 2026
33
CLST - Radboud University
44
ILK - Tilburg University
55
CLiPS - University of Antwerp
@@ -339,7 +339,7 @@ void usage(){
339339
}
340340

341341
int main(int argc, char *argv[]) {
342-
cerr << "dimbl " << VERSION << " (c) CLST/ILK 1998 - 2024" << endl;
342+
cerr << "dimbl " << VERSION << " (c) CLST/ILK 1998 - 2026" << endl;
343343
cerr << "Centre for Language and Speech Technology, Radboud University" << endl;
344344
cerr << "Induction of Linguistic Knowledge Research Group, Tilburg University" << endl;
345345
cerr << "based on [" << Timbl::VersionName() << "]" << endl;

0 commit comments

Comments
 (0)