Skip to content

Commit

Permalink
Update 0.5.1-beta
Browse files Browse the repository at this point in the history
 - Downgrade dokka from 0.10.1 to 0.10.0 (new version unstable)
 - New TODO: create '/vecor config' command
  • Loading branch information
patrick-choe committed Mar 23, 2020
1 parent 9265746 commit 8209eff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
>
>...
>dependencies {
> implementation 'com.github.patrick-mc:vector-game:0.5-beta'
> implementation 'com.github.patrick-mc:vector-game:0.5.1-beta'
>}
>```
Expand All @@ -56,6 +56,6 @@
>
>...
>dependencies {
> implementation("com.github.patrick-mc:vector-game:0.5-beta")
> implementation("com.github.patrick-mc:vector-game:0.5.1-beta")
>}
>```
7 changes: 3 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ plugins {
`maven-publish`
signing
kotlin("jvm") version "1.3.70"
id("org.jetbrains.dokka") version "0.10.1"
id("org.jetbrains.dokka") version "0.10.0"
}

group = "com.github.patrick-mc"
version = "0.5-beta"
version = "0.5.1-beta"

repositories {
maven("https://repo.maven.apache.org/maven2/")
Expand All @@ -25,8 +25,7 @@ dependencies {
tasks {
compileKotlin { kotlinOptions.jvmTarget = "1.8" }

@kotlin.Suppress("deprecated")
val dokka by getting(org.jetbrains.dokka.gradle.DokkaTask::class) {
dokka {
outputFormat = "javadoc"
outputDirectory = "$buildDir/dokka"

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: VectorGame
version: 0.5-beta
version: 0.5.1-beta
description: A vector game for education
api-version: "1.12"
load: POSTWORLD
Expand Down

0 comments on commit 8209eff

Please sign in to comment.