Skip to content

Commit 5cc292d

Browse files
committed
Port "change version number for 2.43 release change year in COPYRIGHT"
Ported from cjlin1/liblinear@acf2f9c
1 parent c00fa0f commit 5cc292d

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-2020 The LIBLINEAR Project.
2+
Copyright (c) 2007-2021 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.42</version>
28+
<version>2.43</version>
2929
</dependency>
3030
```
3131

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515
}
1616

1717
group = "de.bwaldvogel"
18-
version = '2.42'
18+
version = '2.43'
1919

2020
sourceCompatibility = 1.8
2121
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.42
33+
* @version 2.43
3434
*/
3535
public class Linear {
3636

37-
static final int VERSION = 242;
37+
static final int VERSION = 243;
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
@@ -767,7 +767,7 @@ void testFindBestParametersOnDnaScaleDataSet_L2R_L2LOSS_SVR() throws Exception {
767767

768768
@Test
769769
void testGetVersion() throws Exception {
770-
assertThat(Linear.getVersion()).isEqualTo(242);
770+
assertThat(Linear.getVersion()).isEqualTo(243);
771771
}
772772

773773
}

0 commit comments

Comments
 (0)