Skip to content

Commit

Permalink
Renamed version to 2.1.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
itsaky committed Jun 23, 2022
1 parent 40062ad commit 186a336
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@ public List<CompletionItem> complete(
});

try {
final var items = future.get ().getItems ();
return items;
return future.get().getItems();
} catch (Throwable e) {
// Do not log if completion was interrupted or cancelled
if (!(e instanceof InterruptedException || e instanceof CompletionCancelledException)) {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildscript {
minSdk = 26
targetSdk = 28
versionCode = 202
versionName = "2.0.2-beta"
versionName = "2.1.0-beta"
packageName = "com.itsaky.androidide"

javaSourceVersion = JavaVersion.VERSION_11
Expand Down

0 comments on commit 186a336

Please sign in to comment.