Skip to content

Commit

Permalink
Merge pull request #222 from sagifogel/v0.5.0
Browse files Browse the repository at this point in the history
bump version to 0.5.0
  • Loading branch information
sagifogel authored Jul 8, 2022
2 parents 8688f30 + 3e2a409 commit 4a3a697
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ and is built on top of [Cats](https://typelevel.org/cats/), and [Spire](https://
Add to your `build.sbt`
```scala
libraryDependencies ++= Seq(
"io.github.sagifogel" %% "proptics-core" % "0.4.3",
"io.github.sagifogel" %% "proptics-profunctor" % "0.4.3",
"io.github.sagifogel" %% "proptics-macros" % "0.4.3"
"io.github.sagifogel" %% "proptics-core" % "0.5.0",
"io.github.sagifogel" %% "proptics-profunctor" % "0.5.0",
"io.github.sagifogel" %% "proptics-macros" % "0.5.0"
)
```

Expand Down
6 changes: 3 additions & 3 deletions docs/src/main/mdoc/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ To get started with [sbt](https://scala-sbt.org), simply add the following line

```scala
libraryDependencies ++= Seq(
"@ORGANIZATION@" %% "@CORE_MODULE_NAME@" % "0.4.3",
"@ORGANIZATION@" %% "proptics-profunctor" % "0.4.3",
"@ORGANIZATION@" %% "proptics-macros" % "0.4.3"
"@ORGANIZATION@" %% "@CORE_MODULE_NAME@" % "0.5.0",
"@ORGANIZATION@" %% "proptics-profunctor" % "0.5.0",
"@ORGANIZATION@" %% "proptics-macros" % "0.5.0"
)
```

Expand Down
4 changes: 2 additions & 2 deletions project/BuildHelper.scala
Original file line number Diff line number Diff line change
Expand Up @@ -198,13 +198,13 @@ object BuildHelper {
.value,
ScalaUnidoc / unidoc / scalacOptions ++= Seq(
"-doc-source-url",
s"https://github.com/sagifogel/Proptics/tree/v0.4.3€{FILE_PATH}.scala",
s"https://github.com/sagifogel/Proptics/tree/v0.5.0€{FILE_PATH}.scala",
"-sourcepath",
(LocalRootProject / baseDirectory).value.getAbsolutePath,
"-doc-title",
"Proptics",
"-doc-version",
"v0.4.3"
"v0.5.0"
)
)

Expand Down
2 changes: 1 addition & 1 deletion project/MimaSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import sbt.Keys.{moduleName, organization}
import sbt._

object MimaSettings {
lazy val previousArtifactsToCompare = "0.4.2"
lazy val previousArtifactsToCompare = "0.4.3"
def mimaSettings(failOnProblem: Boolean) = Seq(
mimaFailOnProblem := failOnProblem,
mimaPreviousArtifacts := Set(organization.value %% moduleName.value % previousArtifactsToCompare)
Expand Down

0 comments on commit 4a3a697

Please sign in to comment.