Skip to content

Commit 0565ab1

Browse files
committed
Updates policy files from SBT [ci skip]
1 parent 31ca07a commit 0565ab1

File tree

9 files changed

+1819
-20
lines changed

9 files changed

+1819
-20
lines changed

AUTHORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The maintainers of the project are:
88

99
## Contributors
1010

11-
These are the people that have contributed to the fetch project:
11+
These are the people that have contributed to the Fetch project:
1212

1313
* Adelbert Chang <[adelbertc](https://github.com/adelbertc)>
1414
* Alejandro Gómez <[dialelo](https://github.com/dialelo)>

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Contributing
22

3-
Discussion around fetch happens in the [Gitter channel](https://gitter.im/47deg/fetch) as well as on
3+
Discussion around Fetch happens in the [Gitter channel](https://gitter.im/47deg/fetch) as well as on
44
[GitHub issues](https://github.com/47deg/fetch/issues) and [pull requests](https://github.com/47deg/fetch/pulls).
55

66
Feel free to open an issue if you notice a bug, have an idea for a feature, or have a question about
77
the code. Pull requests are also welcome.
88

9-
People are expected to follow the [Typelevel Code of Conduct](http://typelevel.org/conduct.html) when discussing fetch on the Github page, Gitter channel, or other venues.
9+
People are expected to follow the [Typelevel Code of Conduct](http://typelevel.org/conduct.html) when discussing Fetch on the Github page, Gitter channel, or other venues.
1010

1111
If you are being harassed, please contact one of [us](AUTHORS.md#maintainers) immediately so that we can support you. In case you cannot get in touch with us please write an email to [47 Degrees](mailto:[email protected]).
1212

1313
## How can I help?
1414

15-
fetch follows a standard [fork and pull](https://help.github.com/articles/using-pull-requests/) model for contributions via GitHub pull requests.
15+
Fetch follows a standard [fork and pull](https://help.github.com/articles/using-pull-requests/) model for contributions via GitHub pull requests.
1616

1717
The process is simple:
1818

NOTICE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
fetch
1+
Fetch
22
Copyright (c) 2016-2017 47 Degrees. All rights reserved.
33

44
Licensed under Apache License. See [LICENSE](LICENSE) for terms.

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Fetch
21

32
[comment]: # (Start Badges)
43

5-
[![Build Status](https://travis-ci.org/47deg/fetch.svg?branch=master)](https://travis-ci.org/47deg/fetch) [![Maven Central](https://img.shields.io/badge/maven%20central-0.6.1-green.svg)](https://maven-badges.herokuapp.com/maven-central/com.47deg/fetch) [![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://raw.githubusercontent.com/47deg/fetch/master/LICENSE) [![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) [![GitHub Issues](https://img.shields.io/github/issues/47deg/fetch.svg)](https://github.com/47deg/fetch/issues)
4+
[![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://maven-badges.herokuapp.com/maven-central/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://index.scala-lang.org/47deg/fetch/fetch/latest.svg)](https://index.scala-lang.org/47deg/fetch/fetch) [![GitHub Issues](https://img.shields.io/github/issues/47deg/fetch.svg)](https://github.com/47deg/fetch/issues)
65

76
[comment]: # (End Badges)
7+
# Fetch
88

99
A library for Simple & Efficient data access in Scala and Scala.js
1010

@@ -17,20 +17,22 @@ Add the following dependency to your project's build file.
1717
For Scala 2.11.x and 2.12.x:
1818

1919
[comment]: # (Start Replace)
20+
2021
```scala
21-
"com.47deg" %% "fetch" % "0.6.0"
22+
"com.47deg" %% "fetch" % "0.6.1"
2223
```
2324

2425
Or, if using Scala.js (0.6.x):
2526

2627
```scala
27-
"com.47deg" %%% "fetch" % "0.6.0"
28+
"com.47deg" %%% "fetch" % "0.6.1"
2829
```
2930

3031
[comment]: # (End Replace)
3132

3233

3334

35+
3436
## Remote data
3537

3638
Fetch is a library for making access to data both simple & efficient. Fetch is especially useful when querying data that
@@ -190,7 +192,7 @@ fetchTwice.runA[Id]
190192
[comment]: # (Start Copyright)
191193
# Copyright
192194

193-
fetch is designed and developed by 47 Degrees
195+
Fetch is designed and developed by 47 Degrees
194196

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

docs/src/main/tut/docs.md

Lines changed: 2 additions & 4 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.0"
34+
"com.47deg" %% "fetch" % "0.6.1"
3535
```
3636

3737
Or, if using Scala.js:
3838

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

4343
[comment]: # (End Replace)
@@ -1267,5 +1267,3 @@ Fetch stands on the shoulders of giants:
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.
12691269
- [Monix](https://monix.io) high-performance and multiplatform (Scala / Scala.js) asynchronous programming library.
1270-
1271-

docs/src/main/tut/index.md

Lines changed: 3 additions & 3 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.0"
18+
"com.47deg" %% "fetch" % "0.6.1"
1919
```
2020

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

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

2727
[comment]: # (End Replace)
@@ -192,4 +192,4 @@ fetchTwice.runA[Id]
192192

193193
---
194194

195-
For more in-depth information take a look at our [documentation](http://47deg.github.io/fetch/docs.html).
195+
For more in-depth information take a look at our [documentation](http://47deg.github.io/fetch/docs.html).

0 commit comments

Comments
 (0)