From a4dc1fcb33fadb71b92d8770d63a6333a4a08c7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Kozak?= Date: Mon, 31 Aug 2026 12:58:42 +0200 Subject: [PATCH] docs: fix stale sbt scala3 version, mvDeps typo, and stale prose mention The sbt snippet's scalaVersion := "3.9.0-RC4" never got bumped alongside the scala-cli/mill ones -- Renovate's regex customManager didn't match sbt's `:=` syntax (fixed in halotukozak-com/.github#14). Also fixes `def mvDeps` -> `def mvnDeps` and the top caveat's stale "3.9.0-RC4" mention (free prose, not something any regex manager touches). Leaves the mill block's `def scalaVersion = "3.9.0-RC4"` for #55 (open Renovate PR that already bumps it, plus the scala-cli block and project.scala) to avoid conflicting with it. Co-Authored-By: Claude Sonnet 5 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 131c530..e81398e 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ **AVSystem/commons-style RPC framework for Scala 3**, built on [Made](https://github.com/halotukozak/made) and [mcodec](https://github.com/halotukozak/mcodec). -> **Experimental / v1 in progress.** Pinned to Scala **3.9.0-RC4**. JVM only. The wire model is fixed to a +> **Experimental / v1 in progress.** Pinned to Scala **3.9.0**. JVM only. The wire model is fixed to a > `fire`/`call`/`get` `RawRpc` — generic methods, varargs, `@composite`, and interceptors are out of scope for now. > See [DIVERGENCES.md](DIVERGENCES.md) for the full, honest list of where mrpc deliberately departs from commons. @@ -40,7 +40,7 @@ back into typed calls. ### sbt ```scala -scalaVersion := "3.9.0-RC4" +scalaVersion := "3.9.0" libraryDependencies += "com.halotukozak" %% "mrpc" % "" ``` @@ -48,7 +48,7 @@ libraryDependencies += "com.halotukozak" %% "mrpc" % "" ```scala def scalaVersion = "3.9.0-RC4" -def mvDeps = Seq(mvn"com.halotukozak::mrpc::") +def mvnDeps = Seq(mvn"com.halotukozak::mrpc::") ``` ## Quickstart