From da4ab47949a5d9e0fe9f5d2175387214ce5fd338 Mon Sep 17 00:00:00 2001 From: Tafadzwa Pasipanodya Date: Sat, 2 Apr 2022 10:38:16 -0400 Subject: [PATCH] Prepare Version 0.10.0 (#52) --- CHANGELOG.md | 6 ++++++ README.md | 2 +- build.gradle.kts | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12f41d1..6325488 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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). +# 0.10.0 +- `postgresql` version `42.3.3` +- `jackson-module-kotlin` version `2.13.2` +- `jackson-datatype-jsr310` version `2.13.2` +- `slf4j-simple` version `1.7.36` + # 0.9.0 - `io.taff.exposed` version `0.5.0`. - Split out the wiki page from `WIKI.md`. diff --git a/README.md b/README.md index fdde881..83e623e 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ A collection of extensions for [Exposed](https://github.com/tpasipanodya/Exposed ## How to Use ```kotlin -implementation("io.taff:exposed-extensions:0.9.0") +implementation("io.taff:exposed-extensions:0.10.0") ``` Using logical tenant isolation as an example: diff --git a/build.gradle.kts b/build.gradle.kts index d4cdac7..59893d3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ plugins { } group = "io.taff" -version = "0.9.0${ if (isReleaseBuild()) "" else "-SNAPSHOT" }" +version = "0.10.0${ if (isReleaseBuild()) "" else "-SNAPSHOT" }" java.sourceCompatibility = JavaVersion.VERSION_17 repositories {