Browse Source

0.6.0, travis tweaks

Don't bother building on JDK9, just 8 + 11 should cover it
tags/v0.6.0
Chris Smith 5 years ago
parent
commit
3501e8445f
4 changed files with 7 additions and 3 deletions
  1. 0
    1
      .travis.yml
  2. 2
    0
      CHANGELOG
  3. 1
    1
      build.gradle.kts
  4. 4
    1
      src/test/kotlin/com/dmdirc/ktirc/IrcClientTest.kt

+ 0
- 1
.travis.yml View File

2
 language: java
2
 language: java
3
 jdk:
3
 jdk:
4
   - oraclejdk8
4
   - oraclejdk8
5
-  - oraclejdk9
6
   - oraclejdk11
5
   - oraclejdk11
7
 before_install:
6
 before_install:
8
   - chmod +x gradlew
7
   - chmod +x gradlew

+ 2
- 0
CHANGELOG View File

1
 vNEXT (in development)
1
 vNEXT (in development)
2
 
2
 
3
+v0.6.0
4
+
3
  * Changed USER command to not send the server name, per modern standards
5
  * Changed USER command to not send the server name, per modern standards
4
  * Added support for SASL authentication (with PLAIN mechanism)
6
  * Added support for SASL authentication (with PLAIN mechanism)
5
  * Removed some unused test code
7
  * Removed some unused test code

+ 1
- 1
build.gradle.kts View File

1
 import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
1
 import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2
 
2
 
3
-version = "0.5.0"
3
+version = "0.6.0"
4
 group = "com.dmdirc.ktirc"
4
 group = "com.dmdirc.ktirc"
5
 
5
 
6
 plugins {
6
 plugins {

+ 4
- 1
src/test/kotlin/com/dmdirc/ktirc/IrcClientTest.kt View File

1
 package com.dmdirc.ktirc
1
 package com.dmdirc.ktirc
2
 
2
 
3
-import com.dmdirc.ktirc.events.*
3
+import com.dmdirc.ktirc.events.IrcEvent
4
+import com.dmdirc.ktirc.events.ServerConnected
5
+import com.dmdirc.ktirc.events.ServerConnecting
6
+import com.dmdirc.ktirc.events.ServerWelcome
4
 import com.dmdirc.ktirc.io.CaseMapping
7
 import com.dmdirc.ktirc.io.CaseMapping
5
 import com.dmdirc.ktirc.io.LineBufferedSocket
8
 import com.dmdirc.ktirc.io.LineBufferedSocket
6
 import com.dmdirc.ktirc.model.*
9
 import com.dmdirc.ktirc.model.*

Loading…
Cancel
Save