Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
vaslabs committed May 9, 2020
1 parent 28af149 commit a92ec30
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ The main deliverable of Talos is fine grained monitoring.
Talos is modularised. You can twist it and pick the dependencies that fit your need. But let's go step by step.

```scala
libraryDependencies += "org.vaslabs.talos" %% "taloscore" % "1.0.0"
libraryDependencies += "org.vaslabs.talos" %% "talosakkasupport" % "1.0.0"
libraryDependencies += "org.vaslabs.talos" %% "taloskamon" % "1.0.0"
libraryDependencies += "org.vaslabs.talos" %% "taloscore" % "2.0.1"
libraryDependencies += "org.vaslabs.talos" %% "talosakkasupport" % "2.0.1"
libraryDependencies += "org.vaslabs.talos" %% "taloskamon" % "2.0.1"
```
The events library provides a way to stream events on what's happening in the circuit breakers. E.g. combining with the talosakkasupport you can do:
```scala
Expand Down Expand Up @@ -65,7 +65,7 @@ https://github.com/vaslabs/talos/blob/master/examples/src/main/scala/talos/examp
### Laws
If you wish to implement your own TalosCircuitBreaker typeclasses you can test them against the laws library:
```scala
libraryDependencies += "org.vaslabs.talos" %% "taloslaws" % "2.0.0" % Test
libraryDependencies += "org.vaslabs.talos" %% "taloslaws" % "2.0.1" % Test
```


Expand Down
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ lazy val talosExamples =
.settings(
coverageExcludedPackages := ".*"
)
.settings(compilerSettings)
.dependsOn(talosAkkaSupport, talosKamon)

lazy val noPublishSettings = Seq(
Expand Down
4 changes: 2 additions & 2 deletions site/docs/events/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ This is the basic documentation for exposing the Akka circuit breaker events. Fo

```scala
libraryDependencies ++= Seq(
"org.vaslabs.talos" %% "taloscore" % "1.0.0",
"org.vaslabs.talos" %% "talosakkasupport" % "1.0.0"
"org.vaslabs.talos" %% "taloscore" % "2.0.1",
"org.vaslabs.talos" %% "talosakkasupport" % "2.0.1"
)
```
## Usage example
Expand Down
2 changes: 1 addition & 1 deletion site/docs/kamon/kamon.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ number: 2
## Dependency

```scala
libraryDependencies += "org.vaslabs.talos" %% "taloskamon" % "2.0.0"
libraryDependencies += "org.vaslabs.talos" %% "taloskamon" % "2.0.1"
```

```scala mdoc:silent
Expand Down
2 changes: 1 addition & 1 deletion site/docs/laws/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ A laws library is provided to be able to:


```scala
libraryDependencies += "org.vaslabs.talos" %% "taloslaws" % "1.0.0"
libraryDependencies += "org.vaslabs.talos" %% "taloslaws" % "2.0.1"
```

Navigate the laws section to find more.
4 changes: 2 additions & 2 deletions site/docs/monix/monix.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ To use monix declare the talos monix support dependency.

```scala
libraryDependencies ++= Seq(
"org.vaslabs.talos" %% "taloscore" % "1.0.0",
"org.vaslabs.talos" %% "talosmonixsupport" % "1.0.0"
"org.vaslabs.talos" %% "taloscore" % "2.0.1",
"org.vaslabs.talos" %% "talosmonixsupport" % "2.0.1"
)
```

Expand Down

0 comments on commit a92ec30

Please sign in to comment.