Skip to content

Commit

Permalink
v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcgrue committed Jul 9, 2024
1 parent 92dc1ba commit b8ed767
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,13 +176,13 @@ Add the following to your build files:
`project/build.properties`:

```
sbt.version = 1.10.0
sbt.version = 1.10.1
```

`project/plugins.sbt`:

```scala
addSbtPlugin("org.scalamolecule" % "sbt-molecule" % "1.8.0")
addSbtPlugin("org.scalamolecule" % "sbt-molecule" % "1.8.1")
```

`build.sbt`:
Expand All @@ -193,12 +193,12 @@ lazy val yourProject = project.in(file("app"))
.settings(
libraryDependencies ++= Seq(
// One or more of:
"org.scalamolecule" %%% "molecule-sql-postgres" % "0.9.0",
"org.scalamolecule" %%% "molecule-sql-sqlite" % "0.9.0",
"org.scalamolecule" %%% "molecule-sql-mysql" % "0.9.0",
"org.scalamolecule" %%% "molecule-sql-mariadb" % "0.9.0",
"org.scalamolecule" %%% "molecule-sql-h2" % "0.9.0",
"org.scalamolecule" %%% "molecule-datalog-datomic" % "0.9.0",
"org.scalamolecule" %%% "molecule-sql-postgres" % "0.9.1",
"org.scalamolecule" %%% "molecule-sql-sqlite" % "0.9.1",
"org.scalamolecule" %%% "molecule-sql-mysql" % "0.9.1",
"org.scalamolecule" %%% "molecule-sql-mariadb" % "0.9.1",
"org.scalamolecule" %%% "molecule-sql-h2" % "0.9.1",
"org.scalamolecule" %%% "molecule-datalog-datomic" % "0.9.1",
),
moleculeSchemas := Seq("app") // paths to your data model definitions
)
Expand Down Expand Up @@ -242,8 +242,6 @@ Then in another process/terminal window:

sbt sqlPostgresJS/test

(Scalajs tests don't work with Scala 3.x yet)

</details>


Expand Down

0 comments on commit b8ed767

Please sign in to comment.