Skip to content

Commit

Permalink
Release 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-choe committed Aug 27, 2020
1 parent d211f7a commit da3cec7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

A discord plugin using [nv-websocket-client](https://github.com/TakahikoKawasaki/nv-websocket-client)

Latest Version: 1.0-SNAPSHOT (Aug 03, 2020)
Latest Version: 1.0 (Aug 27, 2020)

## Features

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {
}

group = "com.github.patrick-mc"
version = "1.0-SNAPSHOT"
version = "1.0"

repositories {
maven("https://repo.maven.apache.org/maven2/")
Expand Down
4 changes: 1 addition & 3 deletions src/main/kotlin/com/github/patrick/discord/DiscordTask.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,5 @@ package com.github.patrick.discord
import java.util.TimerTask

class DiscordTask(private val unit: () -> Unit) : TimerTask() {
override fun run() {
unit()
}
override fun run() = unit()
}
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: Discord
version: "1.0-SNAPSHOT"
version: "1.0"
main: com.github.patrick.discord.plugin.DiscordPlugin
api-version: "1.13"
depend: [Kotlin]
Expand Down

0 comments on commit da3cec7

Please sign in to comment.