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

Commit

Permalink
Update to v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
serebit committed Sep 28, 2021
1 parent 2ffe091 commit cfc3c93
Show file tree
Hide file tree
Showing 7 changed files with 184 additions and 122 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,28 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v1.0.4 (2021-09-28)

### Updated

- kotlin [v1.5.10 -> v1.5.31]
- docker-gradle-plugin [v0.26.0 -> v0.29.0]
- amqp-client [v5.12.0 -> v5.13.1]
- ktor [v1.6.0 -> v1.6.3]
- kotlinx-serialization [v1.2.1 -> v1.3.0]
- junit-jupiter [v5.7.2 -> v5.8.1]
- mongodb-driver [v3.12.8 -> v3.12.10]
- tinylog [v2.3.1 -> v2.3.2]
- Gradle wrapper [v7.0.2 -> v7.2]

## v1.0.3 (2021-05-30)

## Changed
### Changed

- Base Docker image from `openjdk:16-alpine` to `adoptopenjdk:11-jre-hotspot`, both for consistent security updates and
a smaller storage/memory footprint

## Updated
### Updated

- kotlin v1.5.0 -> v1.5.10
- ktor v1.5.4 -> v1.6.0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gradle:7.0.2-jdk11
FROM gradle:7.2-jdk11

WORKDIR /var/build
COPY ./ /var/build
Expand Down
26 changes: 13 additions & 13 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.5.10"
kotlin("plugin.serialization") version "1.5.10"
kotlin("jvm") version "1.5.31"
kotlin("plugin.serialization") version "1.5.31"
id("com.github.ben-manes.versions") version "0.39.0"
id("com.github.johnrengelman.shadow") version "7.0.0"
id("com.palantir.docker") version "0.26.0"
id("com.palantir.docker") version "0.29.0"
application
}

group = "io.streamcord"
version = "1.0.3"
version = "1.0.4"

repositories {
mavenCentral()
}

dependencies {
// HTTP Server and Client
implementation("io.ktor", "ktor-server-cio", "1.6.0")
implementation("io.ktor", "ktor-client-java", "1.6.0")
implementation("io.ktor", "ktor-server-cio", "1.6.3")
implementation("io.ktor", "ktor-client-java", "1.6.3")

// Serialization
implementation("org.jetbrains.kotlinx", "kotlinx-serialization-json", "1.2.1")
implementation("com.charleskorn.kaml", "kaml", "0.34.0")
implementation("org.jetbrains.kotlinx", "kotlinx-serialization-json", "1.3.0")
implementation("com.charleskorn.kaml", "kaml", "0.36.0")

// DB
implementation("org.mongodb", "mongodb-driver", "3.12.8")
implementation("org.mongodb", "mongodb-driver", "3.12.10")

// MQ
implementation("com.rabbitmq", "amqp-client", "5.12.0")
implementation("com.rabbitmq", "amqp-client", "5.13.1")

// Logging
implementation("org.tinylog", "slf4j-tinylog", "2.3.1")
implementation("org.tinylog", "tinylog-impl", "2.3.1")
implementation("org.tinylog", "slf4j-tinylog", "2.3.2")
implementation("org.tinylog", "tinylog-impl", "2.3.2")

// Tests
testImplementation(kotlin("test-junit5"))
testImplementation("org.junit.jupiter", "junit-jupiter", "5.7.2")
testImplementation("org.junit.jupiter", "junit-jupiter", "5.8.1")
}

kotlin.sourceSets["main"].languageSettings.apply {
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ org.gradle.configureondemand=true
org.gradle.parallel=true
org.gradle.vfs.watch=true
kotlin.code.style=official
kotlin.parallel.tasks.in.project=true
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit cfc3c93

Please sign in to comment.