Skip to content

Commit

Permalink
Bump version to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosemoe committed Oct 16, 2021
1 parent 7a437b2 commit b63664e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,12 @@ tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}

String[] excludeProjectName = new String[] {"app", "buildSrc"}

task bundleAll {
group = 'Rosemoe'
allprojects.forEach {
if (it.name.equals("editor") || it.name.startsWith("language-")) {
if (!excludeProjectName.contains(it)) {
dependsOn it.getTasksByName("bundleReleaseAar", false)
}
}
Expand All @@ -88,7 +90,7 @@ task bundleAll {
task publishAll {
group = 'Rosemoe'
allprojects.forEach {
if (it.name.equals("editor") || it.name.startsWith("language-")) {
if (!excludeProjectName.contains(it)) {
dependsOn it.getTasksByName("publish", false)
}
}
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/java/Versions.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
public final class Versions {

// Project versions
public final static String versionName = "0.6.0";
public final static int versionCode = 18;
public final static String versionName = "0.7.0";
public final static int versionCode = 19;

// Platform & Tool versions
public final static String buildToolsVersion = "31.0.0";
Expand Down

0 comments on commit b63664e

Please sign in to comment.