Remove "EXPERIMENTAL" from 1.2 version description in tests and gradle options

This commit is contained in:
Ilya Gorbunov
2017-05-12 19:38:32 +03:00
parent b901a8946c
commit 456c26cdae
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
error: unknown API version: 239.42 error: unknown API version: 239.42
Supported API versions: 1.0, 1.1, 1.2 (EXPERIMENTAL), 1.3 (EXPERIMENTAL) Supported API versions: 1.0, 1.1, 1.2, 1.3 (EXPERIMENTAL)
COMPILATION_ERROR COMPILATION_ERROR
+1 -1
View File
@@ -1,3 +1,3 @@
error: unknown language version: 239.42 error: unknown language version: 239.42
Supported language versions: 1.0, 1.1, 1.2 (EXPERIMENTAL), 1.3 (EXPERIMENTAL) Supported language versions: 1.0, 1.1, 1.2, 1.3 (EXPERIMENTAL)
COMPILATION_ERROR COMPILATION_ERROR
@@ -6,14 +6,14 @@ interface KotlinCommonOptions : org.jetbrains.kotlin.gradle.dsl.KotlinCommonToo
/** /**
* Allow to use declarations only from the specified version of bundled libraries * Allow to use declarations only from the specified version of bundled libraries
* Possible values: "1.0", "1.1", "1.2 (EXPERIMENTAL)", "1.3 (EXPERIMENTAL)" * Possible values: "1.0", "1.1", "1.2, 1.3 (EXPERIMENTAL)"
* Default value: null * Default value: null
*/ */
var apiVersion: kotlin.String? var apiVersion: kotlin.String?
/** /**
* Provide source compatibility with specified language version * Provide source compatibility with specified language version
* Possible values: "1.0", "1.1", "1.2 (EXPERIMENTAL)", "1.3 (EXPERIMENTAL)" * Possible values: "1.0", "1.1", "1.2, 1.3 (EXPERIMENTAL)"
* Default value: null * Default value: null
*/ */
var languageVersion: kotlin.String? var languageVersion: kotlin.String?