Skip to content

Commit

Permalink
Bump up
Browse files Browse the repository at this point in the history
  • Loading branch information
mopemope committed Jan 1, 2022
1 parent ec6f547 commit 7decfd6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# Next Release

# 1.3.2 (2021-01-01)

## Fixed

- Fix CVE-2021-44228

# 1.3.1 (2020-08-15)

## Added

- Add the function of sending an error report.

## Changed
## changed

- Update gradle to 6.6.
- Fix to use the latest library.
Expand Down
8 changes: 4 additions & 4 deletions server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

val group = "io.github.mopemope"
var serverVersion = "1.3.1"
var serverVersion = "1.3.2"
var buildVersion = "release"

val gitFile = File("../.git")
Expand All @@ -35,7 +35,7 @@ val junitVersion = "5.8.2"
val gradleVersion = "7.3.3"
val log4jVersion = "2.17.1"
val xodusVersion = "1.3.232"
val opencensusVersion = "0.29.0"
val opencensusVersion = "0.30.0"

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

Expand Down
2 changes: 1 addition & 1 deletion server/src/main/java/meghanada/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

public class Main {

public static final String VERSION = "1.3.1";
public static final String VERSION = "1.3.2";
private static final Logger log = LogManager.getLogger(Main.class);
private static String version;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public void testCompletion04() throws Exception {
final Collection<? extends CandidateUnit> units =
timeIt(() -> completion.completionAt(file, 8, 9, "@Test"));
units.forEach(a -> log.info(a.getDeclaration()));
assertEquals(9, units.size());
assertEquals(10, units.size());
// assertEquals(6, units.size());
}

Expand Down

0 comments on commit 7decfd6

Please sign in to comment.