From 218782d4b064aafea859997b67d6365d750074e0 Mon Sep 17 00:00:00 2001 From: Windymelt Date: Mon, 20 Nov 2023 19:04:54 +0900 Subject: [PATCH 1/3] Add scaladex badge --- docs/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/index.md b/docs/index.md index db19613..c65d1fb 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,6 +6,7 @@ [![Coverage status](https://codecov.io/gh/tarao/record4s/graph/badge.svg?token=U9309O1VNK)](https://codecov.io/gh/tarao/record4s) [![Maven Central](https://img.shields.io/maven-central/v/com.github.tarao/record4s_3.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.tarao/record4s_3) [![Scaladoc](https://javadoc.io/badge2/com.github.tarao/record4s_3/javadoc.svg?color=blue&label=Scaladoc)](https://javadoc.io/doc/com.github.tarao/record4s_3) +[![record4s Scala version support](https://index.scala-lang.org/tarao/record4s/record4s/latest.svg)](https://index.scala-lang.org/tarao/record4s/record4s) record4s proviedes extensible records for Scala. From e4383531ecce38e82e27057be785a8c4f589a455 Mon Sep 17 00:00:00 2001 From: Windymelt Date: Mon, 20 Nov 2023 19:05:10 +0900 Subject: [PATCH 2/3] Added instructions for other build tools like Mill, Scala CLI --- docs/index.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/index.md b/docs/index.md index c65d1fb..d15f157 100644 --- a/docs/index.md +++ b/docs/index.md @@ -24,6 +24,18 @@ libraryDependencies ++= Seq( ), ``` +For Mill: + +```scala +ivy"com.github.tarao::record4s:@VERSION@" +``` + +For Scala CLI: + +```scala +//> using dep "com.github.tarao::record4s:@VERSION@" +``` + An easier way to try out record4s is to run `sbt console` in the record4s repository. ``` From b534dca46cc7642a950b6dced38711b8eabce1a9 Mon Sep 17 00:00:00 2001 From: Windymelt Date: Mon, 20 Nov 2023 19:21:11 +0900 Subject: [PATCH 3/3] Added Scaladex badge into README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0cb121d..6c5e9c9 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ [![Coverage status](https://codecov.io/gh/tarao/record4s/graph/badge.svg?token=U9309O1VNK)](https://codecov.io/gh/tarao/record4s) [![Maven Central](https://img.shields.io/maven-central/v/com.github.tarao/record4s_3.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.tarao/record4s_3) [![Scaladoc](https://javadoc.io/badge2/com.github.tarao/record4s_3/javadoc.svg?color=blue&label=Scaladoc)](https://javadoc.io/doc/com.github.tarao/record4s_3) +[![record4s Scala version support](https://index.scala-lang.org/tarao/record4s/record4s/latest.svg)](https://index.scala-lang.org/tarao/record4s/record4s) record4s proviedes extensible records for Scala.