Compare commits

..

7 Commits

Author SHA1 Message Date
yura 09990150cb Adding LICENSE and a dummy README 2026-05-13 14:05:30 +02:00
yura edbb3f682f Bumping gradle version 2026-05-13 13:55:16 +02:00
yura 1f76f364b4 Just a little improvement, no code change 2026-05-13 09:42:42 +02:00
yura ca6b4df548 Adding MatrixStorageTest 2026-05-13 09:38:06 +02:00
yura 512ba38209 Adding some extensions 2026-05-12 12:37:53 +02:00
yura 49b6dffdba Adding companion create method 2026-05-12 08:55:24 +02:00
yura 9f20223e92 Basic Matrix and Matrix Storage implementation 2026-05-11 22:57:06 +02:00
2 changed files with 4 additions and 14 deletions
+4 -4
View File
@@ -4,7 +4,7 @@
gradle = "9.5.1" # https://gradle.org/releases/ gradle = "9.5.1" # https://gradle.org/releases/
kotlin = "2.4.0" # https://kotlinlang.org/docs/releases.html#release-details kotlin = "2.3.21" # https://kotlinlang.org/docs/releases.html#release-details
ktlint-library = "1.8.0" # https://github.com/pinterest/ktlint ktlint-library = "1.8.0" # https://github.com/pinterest/ktlint
ktlint-plugin = "14.2.0" # https://github.com/JLLeitschuh/ktlint-gradle ktlint-plugin = "14.2.0" # https://github.com/JLLeitschuh/ktlint-gradle
@@ -13,9 +13,9 @@ memoize = "0.1" # https://gitea.davygora.duckdns.org/yura/-/packages/maven/org.d
# Test # Test
kotest = "6.2.0" # https://mvnrepository.com/artifact/io.kotest/kotest-runner-junit5 kotest = "6.1.11" # https://mvnrepository.com/artifact/io.kotest/kotest-runner-junit5
junit = "6.1.0" # https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter junit = "6.0.3" # https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter
mockk = "1.14.11" # https://mvnrepository.com/artifact/io.mockk/mockk mockk = "1.14.9" # https://mvnrepository.com/artifact/io.mockk/mockk
[libraries] [libraries]
-10
View File
@@ -1,10 +0,0 @@
{
"extends": ["config:recommended"],
"labels": ["dependencies"],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
}
]
}