Skip to content

Commit

Permalink
Bump Exposed to v0.56.0 and add a related "Add to your dependencies" …
Browse files Browse the repository at this point in the history
…section in README.md
  • Loading branch information
ShreckYe committed Nov 26, 2024
1 parent 3a1c7d0 commit c632f9e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ A library based on [Exposed](https://github.com/JetBrains/Exposed) [DSL](https:/

This project is an attempt to provide an alternative to [Exposed DAO](https://github.com/JetBrains/Exposed/wiki/DAO) while supporting some more advanced functional programming features. See JetBrains/Exposed#24 for more details.

## Add to your dependencies

### The Maven coordinate

```kotlin
"com.huanshankeji:exposed-adt-mapping:$libraryVersion"
```

### **Important note**

As Exposed is a library that has not reached stability yet and often has incompatible changes, you are recommended to stick to the same version of Exposed used by this library. The current version is v0.56.0.

## Basic usage guide

Please note that these APIs are far from stable. There are going to be refactors in future releases.
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/VersionsAndDependencies.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import com.huanshankeji.CommonDependencies
import com.huanshankeji.CommonVersions

val projectVersion = "0.2.0-SNAPSHOT"
val projectVersion = "0.3.0-SNAPSHOT"

val commonVersions = CommonVersions(kotlinCommon = "0.5.1")
val commonVersions = CommonVersions(kotlinCommon = "0.5.1", exposed = "0.56.0")
val commonDependencies = CommonDependencies(commonVersions)

0 comments on commit c632f9e

Please sign in to comment.