Skip to content

Commit 4c12094

Browse files
committed
Port "change version number to 2.44 and COPYRIGHT year to 2022"
Ported from cjlin1/liblinear@3d2fdc8
1 parent 61a581c commit 4c12094

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

LICENSE

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

2-
Copyright (c) 2007-2021 The LIBLINEAR Project.
2+
Copyright (c) 2007-2022 The LIBLINEAR Project.
33
All rights reserved.
44

55
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The only requirement is Java 8 or later.
2525
<dependency>
2626
<groupId>de.bwaldvogel</groupId>
2727
<artifactId>liblinear</artifactId>
28-
<version>2.43</version>
28+
<version>2.44</version>
2929
</dependency>
3030
```
3131

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ plugins {
1717
}
1818

1919
group = "de.bwaldvogel"
20-
version = '2.43'
20+
version = '2.44'
2121

2222
sourceCompatibility = 1.8
2323
targetCompatibility = 1.8

src/main/java/de/bwaldvogel/liblinear/Linear.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
*
3131
* <p><em>The port was done by Benedikt Waldvogel (mail at bwaldvogel.de)</em></p>
3232
*
33-
* @version 2.43
33+
* @version 2.44
3434
*/
3535
public class Linear {
3636

37-
static final int VERSION = 243;
37+
static final int VERSION = 244;
3838

3939
static final Charset FILE_CHARSET = StandardCharsets.ISO_8859_1;
4040

src/test/java/de/bwaldvogel/liblinear/LinearTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ void testFindBestParametersOnDnaScaleDataSet_L2R_L2LOSS_SVR() throws Exception {
766766

767767
@Test
768768
void testGetVersion() throws Exception {
769-
assertThat(Linear.getVersion()).isEqualTo(243);
769+
assertThat(Linear.getVersion()).isEqualTo(244);
770770
}
771771

772772
}

0 commit comments

Comments
 (0)