Skip to content

Commit ca7f9db

Browse files
committed
Updates policy files from SBT [ci skip]
1 parent 1adde2e commit ca7f9db

File tree

4 files changed

+17
-18
lines changed

4 files changed

+17
-18
lines changed

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[comment]: # (Start Badges)
44

5-
[![Join the chat at https://gitter.im/47deg/fetch](https://badges.gitter.im/47deg/fetch.svg)](https://gitter.im/47deg/fetch?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://travis-ci.org/47deg/fetch.svg?branch=master)](https://travis-ci.org/47deg/fetch) [![codecov.io](http://codecov.io/github/47deg/fetch/coverage.svg?branch=master)](http://codecov.io/github/47deg/fetch?branch=master) [![Maven Central](https://img.shields.io/badge/maven%20central-0.6.1-green.svg)](https://oss.sonatype.org/#nexus-search;gav~com.47deg~fetch*) [![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://raw.githubusercontent.com/47deg/fetch/master/LICENSE) [![Latest version](https://img.shields.io/badge/fetch-0.6.1-green.svg)](https://index.scala-lang.org/47deg/fetch) [![Scala.js](http://scala-js.org/assets/badges/scalajs-0.6.15.svg)](http://scala-js.org) [![GitHub Issues](https://img.shields.io/github/issues/47deg/fetch.svg)](https://github.com/47deg/fetch/issues)
5+
[![Join the chat at https://gitter.im/47deg/fetch](https://badges.gitter.im/47deg/fetch.svg)](https://gitter.im/47deg/fetch?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://travis-ci.org/47deg/fetch.svg?branch=master)](https://travis-ci.org/47deg/fetch) [![codecov.io](http://codecov.io/github/47deg/fetch/coverage.svg?branch=master)](http://codecov.io/github/47deg/fetch?branch=master) [![Maven Central](https://img.shields.io/badge/maven%20central-0.6.2-green.svg)](https://oss.sonatype.org/#nexus-search;gav~com.47deg~fetch*) [![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://raw.githubusercontent.com/47deg/fetch/master/LICENSE) [![Latest version](https://img.shields.io/badge/fetch-0.6.2-green.svg)](https://index.scala-lang.org/47deg/fetch) [![Scala.js](http://scala-js.org/assets/badges/scalajs-0.6.15.svg)](http://scala-js.org) [![GitHub Issues](https://img.shields.io/github/issues/47deg/fetch.svg)](https://github.com/47deg/fetch/issues)
66

77
[comment]: # (End Badges)
88

@@ -19,13 +19,13 @@ For Scala 2.11.x and 2.12.x:
1919
[comment]: # (Start Replace)
2020

2121
```scala
22-
"com.47deg" %% "fetch" % "0.6.1"
22+
"com.47deg" %% "fetch" % "0.6.2"
2323
```
2424

2525
Or, if using Scala.js (0.6.x):
2626

2727
```scala
28-
"com.47deg" %%% "fetch" % "0.6.1"
28+
"com.47deg" %%% "fetch" % "0.6.2"
2929
```
3030

3131
[comment]: # (End Replace)
@@ -106,7 +106,7 @@ Let's run it and wait for the fetch to complete:
106106

107107
```scala
108108
fetchOne.runA[Id]
109-
// [622] One ToString 1
109+
// [2347] One ToString 1
110110
// res3: cats.Id[String] = 1
111111
```
112112

@@ -124,7 +124,7 @@ When executing the above fetch, note how the three identities get batched and th
124124

125125
```scala
126126
fetchThree.runA[Id]
127-
// [622] Many ToString NonEmptyList(3, 1, 2)
127+
// [2347] Many ToString NonEmptyList(3, 1, 2)
128128
// res5: cats.Id[(String, String, String)] = (1,2,3)
129129
```
130130

@@ -165,8 +165,8 @@ Note how the two independent data fetches run in parallel, minimizing the latenc
165165

166166
```scala
167167
fetchMulti.runA[Id]
168-
// [623] One Length one
169-
// [622] One ToString 1
168+
// [2348] One Length one
169+
// [2347] One ToString 1
170170
// res7: cats.Id[(String, Int)] = (1,3)
171171
```
172172

@@ -185,19 +185,18 @@ While running it, notice that the data source is only queried once. The next tim
185185

186186
```scala
187187
fetchTwice.runA[Id]
188-
// [622] One ToString 1
188+
// [2347] One ToString 1
189189
// res8: cats.Id[(String, String)] = (1,1)
190190
```
191191
## Fetch in the wild
192192

193193
If you wish to add your library here please consider a PR to include it in the list below.
194194

195195
[comment]: # (Start Copyright)
196-
197196
# Copyright
198197

199198
Fetch is designed and developed by 47 Degrees
200199

201200
Copyright (C) 2016-2017 47 Degrees. <http://47deg.com>
202201

203-
[comment]: # (End Copyright)
202+
[comment]: # (End Copyright)

docs/src/main/tut/docs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ To begin, add the following dependency to your SBT build file:
3131
[comment]: # (Start Replace)
3232

3333
```scala
34-
"com.47deg" %% "fetch" % "0.6.1"
34+
"com.47deg" %% "fetch" % "0.6.2"
3535
```
3636

3737
Or, if using Scala.js:
3838

3939
```scala
40-
"com.47deg" %%% "fetch" % "0.6.1"
40+
"com.47deg" %%% "fetch" % "0.6.2"
4141
```
4242

4343
[comment]: # (End Replace)
@@ -1266,4 +1266,4 @@ Fetch stands on the shoulders of giants:
12661266
- [Clump](http://getclump.io) has inspired the signature of the `DataSource#fetch*` methods.
12671267
- [Stitch](https://engineering.twitter.com/university/videos/introducing-stitch) is an in-house Twitter library that is not open source but has inspired Fetch's high-level API.
12681268
- [Cats](http://typelevel.org/cats/), a library for functional programming in Scala.
1269-
- [Monix](https://monix.io) high-performance and multiplatform (Scala / Scala.js) asynchronous programming library.
1269+
- [Monix](https://monix.io) high-performance and multiplatform (Scala / Scala.js) asynchronous programming library.

docs/src/main/tut/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ For Scala 2.11.x and 2.12.x:
1515
[comment]: # (Start Replace)
1616

1717
```scala
18-
"com.47deg" %% "fetch" % "0.6.1"
18+
"com.47deg" %% "fetch" % "0.6.2"
1919
```
2020

2121
Or, if using Scala.js (0.6.x):
2222

2323
```scala
24-
"com.47deg" %%% "fetch" % "0.6.1"
24+
"com.47deg" %%% "fetch" % "0.6.2"
2525
```
2626

2727
[comment]: # (End Replace)

tut/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ For Scala 2.11.x and 2.12.x:
1919
[comment]: # (Start Replace)
2020

2121
```scala
22-
"com.47deg" %% "fetch" % "0.6.1"
22+
"com.47deg" %% "fetch" % "0.6.2"
2323
```
2424

2525
Or, if using Scala.js (0.6.x):
2626

2727
```scala
28-
"com.47deg" %%% "fetch" % "0.6.1"
28+
"com.47deg" %%% "fetch" % "0.6.2"
2929
```
3030

3131
[comment]: # (End Replace)
@@ -198,4 +198,4 @@ Fetch is designed and developed by 47 Degrees
198198

199199
Copyright (C) 2016-2017 47 Degrees. <http://47deg.com>
200200

201-
[comment]: # (End Copyright)
201+
[comment]: # (End Copyright)

0 commit comments

Comments
 (0)