Skip to content

Commit 7decfd6

Browse files
author
mopemope
committed
Bump up
1 parent ec6f547 commit 7decfd6

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# Next Release
22

3+
# 1.3.2 (2021-01-01)
4+
5+
## Fixed
6+
7+
- Fix CVE-2021-44228
8+
39
# 1.3.1 (2020-08-15)
410

511
## Added
612

713
- Add the function of sending an error report.
814

9-
## Changed
15+
## changed
1016

1117
- Update gradle to 6.6.
1218
- Fix to use the latest library.

server/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ plugins {
1313
}
1414

1515
val group = "io.github.mopemope"
16-
var serverVersion = "1.3.1"
16+
var serverVersion = "1.3.2"
1717
var buildVersion = "release"
1818

1919
val gitFile = File("../.git")
@@ -35,7 +35,7 @@ val junitVersion = "5.8.2"
3535
val gradleVersion = "7.3.3"
3636
val log4jVersion = "2.17.1"
3737
val xodusVersion = "1.3.232"
38-
val opencensusVersion = "0.29.0"
38+
val opencensusVersion = "0.30.0"
3939

4040
base {
4141
archivesBaseName = applicationName
@@ -61,8 +61,8 @@ dependencies {
6161
implementation("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
6262
implementation("commons-cli:commons-cli:1.4")
6363
implementation("org.gradle:gradle-tooling-api:$gradleVersion")
64-
implementation("com.google.guava:guava:30.1.1-jre")
65-
implementation("org.ow2.asm:asm:9.1")
64+
implementation("com.google.guava:guava:31.0.1-jre")
65+
implementation("org.ow2.asm:asm:9.2")
6666
implementation("com.typesafe:config:1.4.1")
6767
implementation("org.atteo:evo-inflector:1.3")
6868

server/src/main/java/meghanada/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
public class Main {
3535

36-
public static final String VERSION = "1.3.1";
36+
public static final String VERSION = "1.3.2";
3737
private static final Logger log = LogManager.getLogger(Main.class);
3838
private static String version;
3939

server/src/test/java/meghanada/completion/JavaCompletionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public void testCompletion04() throws Exception {
8989
final Collection<? extends CandidateUnit> units =
9090
timeIt(() -> completion.completionAt(file, 8, 9, "@Test"));
9191
units.forEach(a -> log.info(a.getDeclaration()));
92-
assertEquals(9, units.size());
92+
assertEquals(10, units.size());
9393
// assertEquals(6, units.size());
9494
}
9595

0 commit comments

Comments
 (0)