Skip to content

Commit

Permalink
Updates policy files from SBT [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
47degdev committed Apr 19, 2017
1 parent 31ca07a commit 0565ab1
Show file tree
Hide file tree
Showing 9 changed files with 1,819 additions and 20 deletions.
2 changes: 1 addition & 1 deletion AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The maintainers of the project are:

## Contributors

These are the people that have contributed to the fetch project:
These are the people that have contributed to the Fetch project:

* Adelbert Chang <[adelbertc](https://github.com/adelbertc)>
* Alejandro Gómez <[dialelo](https://github.com/dialelo)>
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Contributing

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

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

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.
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.

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:hello@47deg.com).

## How can I help?

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

The process is simple:

Expand Down
2 changes: 1 addition & 1 deletion NOTICE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fetch
Fetch
Copyright (c) 2016-2017 47 Degrees. All rights reserved.

Licensed under Apache License. See [LICENSE](LICENSE) for terms.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Fetch

[comment]: # (Start Badges)

[![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)
[![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)

[comment]: # (End Badges)
# Fetch

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

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

[comment]: # (Start Replace)

```scala
"com.47deg" %% "fetch" % "0.6.0"
"com.47deg" %% "fetch" % "0.6.1"
```

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

```scala
"com.47deg" %%% "fetch" % "0.6.0"
"com.47deg" %%% "fetch" % "0.6.1"
```

[comment]: # (End Replace)




## Remote data

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

fetch is designed and developed by 47 Degrees
Fetch is designed and developed by 47 Degrees

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

Expand Down
6 changes: 2 additions & 4 deletions docs/src/main/tut/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ To begin, add the following dependency to your SBT build file:
[comment]: # (Start Replace)

```scala
"com.47deg" %% "fetch" % "0.6.0"
"com.47deg" %% "fetch" % "0.6.1"
```

Or, if using Scala.js:

```scala
"com.47deg" %%% "fetch" % "0.6.0"
"com.47deg" %%% "fetch" % "0.6.1"
```

[comment]: # (End Replace)
Expand Down Expand Up @@ -1267,5 +1267,3 @@ Fetch stands on the shoulders of giants:
- [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.
- [Cats](http://typelevel.org/cats/), a library for functional programming in Scala.
- [Monix](https://monix.io) high-performance and multiplatform (Scala / Scala.js) asynchronous programming library.


6 changes: 3 additions & 3 deletions docs/src/main/tut/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ For Scala 2.11.x and 2.12.x:
[comment]: # (Start Replace)

```scala
"com.47deg" %% "fetch" % "0.6.0"
"com.47deg" %% "fetch" % "0.6.1"
```

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

```scala
"com.47deg" %%% "fetch" % "0.6.0"
"com.47deg" %%% "fetch" % "0.6.1"
```

[comment]: # (End Replace)
Expand Down Expand Up @@ -192,4 +192,4 @@ fetchTwice.runA[Id]

---

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

0 comments on commit 0565ab1

Please sign in to comment.