Skip to content
This repository has been archived by the owner on Aug 10, 2022. It is now read-only.

Commit

Permalink
Publish 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
blindpirate committed Apr 8, 2017
1 parent 9a44eb1 commit bcc59ed
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
apply from: 'config/scripts/coverage.gradle'

group 'com.github.blindpirate'
version '0.4.1'
version '0.4.2'

/************** sourcesets **************/
sourceSets {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class TestTop1000Task extends DefaultTask {
String buildDotGradle = """
buildscript {
dependencies {
classpath files('${getProject().getRootDir().absolutePath}/build/libs/gogradle-0.4.1-all.jar')
classpath files('${getProject().getRootDir().absolutePath}/build/libs/gogradle-0.4.2-all.jar')
}
}
apply plugin: 'com.github.blindpirate.gogradle'
Expand All @@ -57,7 +57,7 @@ golang {
buildDotGradle += path.resolve('build.gradle.ext').toFile().text
} else if (!path.toFile().list().any { it.endsWith('.go') }) {
buildDotGradle += '''
build {
goBuild {
doLast {
go 'build ./...'
}
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gogradle是[Gradle](https://gradle.org/)的一个插件。Gradle是一个使用G

```groovy
plugins {
id 'com.github.blindpirate.gogradle' version '0.4.1'
id 'com.github.blindpirate.gogradle' version '0.4.2'
}
golang {
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

```groovy
plugins {
id 'com.github.blindpirate.gogradle' version '0.4.1'
id 'com.github.blindpirate.gogradle' version '0.4.2'
}
golang {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
public enum GogradleGlobal {
INSTANCE;

public static final String GOGRADLE_VERSION = "0.4.1";
public static final String GOGRADLE_VERSION = "0.4.2";
public static final String DEFAULT_CHARSET = "UTF-8";
public static final String GOGRADLE_BUILD_DIR_NAME = ".gogradle";
public static final int MAX_DFS_DEPTH = 100;
Expand Down

0 comments on commit bcc59ed

Please sign in to comment.