Skip to content

Commit d7392c8

Browse files
committed
Release 4.1.3
1 parent a60c5fe commit d7392c8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ The first and only true Functional Reactive Programming framework for Scala.
1010

1111
## Justification
1212

13-
How can we say it's the first true FRP framework for Scala? Simple, because it is. In all other frameworks they add special
14-
framework-specific functions to do things like math (ex. adding two variables together), collection building (ex. a
13+
How can we say it's the first true FRP framework for Scala? In all other frameworks they add special framework-specific
14+
functions to do things like math (ex. adding two variables together with a special `+` method), collection building (ex. a
1515
special implementation of `:::` to concatenate two variables containing lists), or similar mechanisms to Scala's built-in
1616
collection manipulation (ex. `map`). These are great and mostly fill in the gaps necessary to solve your problems. But
1717
the goal for Reactify was a bit loftier. We set out to create a system that actually allows you to use ANY Scala
@@ -30,13 +30,13 @@ reactify is published to Sonatype OSS and Maven Central currently supporting:
3030
Configuring the dependency in SBT simply requires:
3131

3232
```
33-
libraryDependencies += "com.outr" %% "reactify" % "4.0.8"
33+
libraryDependencies += "com.outr" %% "reactify" % "4.1.3"
3434
```
3535

3636
or, for Scala.js / Scala Native / cross-building:
3737

3838
```
39-
libraryDependencies += "com.outr" %%% "reactify" % "4.0.8"
39+
libraryDependencies += "com.outr" %%% "reactify" % "4.1.3"
4040
```
4141

4242
## Concepts
@@ -228,7 +228,7 @@ edge. We can simplify things by leveraging a `Dep` instance to represent it:
228228
val width: Var[Double] = Var(0.0)
229229
230230
val left: Var[Double] = Var(0.0)
231-
val center: Dep[Double, Double] = Dep(left)(_ + (width / 2.0), _ - (widht / 2.0))
231+
val center: Dep[Double, Double] = Dep(left)(_ + (width / 2.0), _ - (width / 2.0))
232232
val right: Dep[Double, Double] = Dep(left)(_ + width, _ - width)
233233
```
234234

@@ -250,7 +250,7 @@ val b = Var[String]("World")
250250
val binding = a bind b
251251
```
252252

253-
By default this will assign the value of `a` to `b` and then changes to either will propagate to the other. If you want
253+
By default, this will assign the value of `a` to `b` and then changes to either will propagate to the other. If you want
254254
to detach the binding:
255255

256256
```scala

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ val allScalaVersions = scala2 ::: scala3
1212

1313
ThisBuild / name := "reactify"
1414
ThisBuild / organization := "com.outr"
15-
ThisBuild / version := "4.1.2"
15+
ThisBuild / version := "4.1.3"
1616
ThisBuild / scalaVersion := scala213
1717
ThisBuild / crossScalaVersions := allScalaVersions
1818

0 commit comments

Comments
 (0)