Skip to content

Commit

Permalink
Release 0.8.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
MateuszKubuszok committed Sep 15, 2023
1 parent e945716 commit a074a58
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ it's recommended to use at least Scala 2.12.1.
If you are using Scala CLI you can try out Chimney by adding it with `using` clause:
```scala
//> using scala "2.13.11"
//> using dep "io.scalaland::chimney:0.8.0-M1"
//> using dep "io.scalaland::chimney:0.8.0-RC1"
import io.scalaland.chimney.dsl._

case class Foo(x: String, y: Int, z: Boolean = true)
Expand All @@ -133,7 +133,7 @@ object Main extends App {
or run the Ammonite REPL:

```scala
scala-cli --power repl --ammonite --scala "2.13.11" --dependency "io.scalaland::chimney:0.8.0-M1"
scala-cli --power repl --ammonite --scala "2.13.11" --dependency "io.scalaland::chimney:0.8.0-RC1"
Loading...
Welcome to the Ammonite Repl 2.5.9 (Scala 2.13.11 Java 17.0.3)
@ case class Foo(x: String, y: Int, z: Boolean = true)
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.8.0-M1'
version = u'0.8.0-RC1'
# The full version, including alpha/beta/rc tags.
release = u'0.8.0-M1'
release = u'0.8.0-RC1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/getting-started/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ If you are using Scala CLI you can try out Chimney by adding it with `using` cla
.. code-block:: scala
//> using scala "2.13.11"
//> using dep "io.scalaland::chimney:0.8.0-M1"
//> using dep "io.scalaland::chimney:0.8.0-RC1"
import io.scalaland.chimney.dsl._
case class Foo(x: String, y: Int, z: Boolean = true)
Expand All @@ -44,7 +44,7 @@ or run the Ammonite REPL:

.. code-block:: scala
scala-cli repl --ammonite --scala "2.13.11" --dependency "io.scalaland::chimney:0.8.0-M1"
scala-cli repl --ammonite --scala "2.13.11" --dependency "io.scalaland::chimney:0.8.0-RC1"
Loading...
Welcome to the Ammonite Repl 2.5.9 (Scala 2.13.11 Java 17.0.3)
@ case class Foo(x: String, y: Int, z: Boolean = true)
Expand Down
4 changes: 2 additions & 2 deletions try-chimney.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ test -e ~/.coursier/coursier || (mkdir -p ~/.coursier && curl -fLo ~/.coursier/c
~/.coursier/coursier launch -q -P -M ammonite.Main \
com.lihaoyi:ammonite_2.13.3:2.5.9 \
org.typelevel:cats-core_2.13:2.9.0 \
io.scalaland:chimney_2.13:0.8.0-M1 \
io.scalaland:chimney-cats_2.13:0.8.0-M1 \
io.scalaland:chimney_2.13:0.8.0-RC1 \
io.scalaland:chimney-cats_2.13:0.8.0-RC1 \
-- --predef-code 'import $plugin.$ivy.`org.typelevel:kind-projector_2.13.10:0.13.2`;import io.scalaland.chimney.dsl._;import io.scalaland.chimney.cats._' < /dev/tty

0 comments on commit a074a58

Please sign in to comment.