Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.6.2 #129

Merged
merged 1 commit into from
May 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ All types are immutable and thread-safe.
[Wiki](https://github.com/garyKeorkunian/squants/wiki)

### Current Versions
Current Release: **0.5.3**
([API Docs](https://oss.sonatype.org/service/local/repositories/releases/archive/com/squants/squants_2.11/0.5.3/squants_2.11-0.5.3-javadoc.jar/!/index.html#squants.package))
Current Release: **0.6.2**
([API Docs](https://oss.sonatype.org/service/local/repositories/releases/archive/com/squants/squants_2.11/0.6.2/squants_2.11-0.6.2-javadoc.jar/!/index.html#squants.package))

Development Build: **0.6.1-SNAPSHOT**
([API Docs](https://oss.sonatype.org/service/local/repositories/snapshots/archive/com/squants/squants_2.11/0.6.1-SNAPSHOT/squants_2.11-0.6.1-SNAPSHOT-javadoc.jar/!/index.html#squants.package))
Development Build: **0.7.1-SNAPSHOT**
([API Docs](https://oss.sonatype.org/service/local/repositories/snapshots/archive/com/squants/squants_2.11/0.7.1-SNAPSHOT/squants_2.11-0.7.1-SNAPSHOT-javadoc.jar/!/index.html#squants.package))

[Release History](https://github.com/garyKeorkunian/squants/wiki/Release-History)

Expand All @@ -35,10 +35,10 @@ For more information on feature availability of a specific version see the Relea
Repository hosting for Squants is provided by [Sonatype](https://oss.sonatype.org/).
To use Squants in your SBT project add the following dependency to your build.

"com.squants" %% "squants" % "0.5.3"
"com.squants" %% "squants" % "0.6.2"
or

"com.squants" %% "squants" % "0.6.1-SNAPSHOT"
"com.squants" %% "squants" % "0.7.1-SNAPSHOT"


To use Squants in your Maven project add the following dependency
Expand All @@ -47,7 +47,7 @@ To use Squants in your Maven project add the following dependency
<dependency>
<groupId>com.squants</groupId>
<artifactId>squants_2.11</artifactId>
<version>0.5.3</version>
<version>0.6.2</version>
</dependency>
```

Expand Down Expand Up @@ -775,6 +775,10 @@ trait LoadRoute extends HttpService {
* Dave DeCarpio ([DaveDeCaprio](https://github.com/DaveDeCaprio))
* Carlos Quiroz ([cquiroz](https://github.com/cquiroz))

## Code of Conduct

Squants is a ([Typelevel](http://typelevel.org/)) Incubator Project and, as such, supports the Typelevel Code of Conduct.

## Caveats

Code is offered as-is, with no implied warranty of any kind.
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import com.typesafe.sbt.osgi.SbtOsgi
import com.typesafe.sbt.osgi.SbtOsgi.autoImport._

object Versions {
val Squants = "0.6.1-SNAPSHOT"
val Squants = "0.6.2"
val Scala = "2.11.7"
val ScalaCross = Seq("2.11.7", "2.10.6")

Expand Down