Skip to content

Commit

Permalink
Version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Feb 23, 2017
1 parent 9243332 commit b9ef074
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@

1.1.0 / 2017-02-23
==================

* Add `requestTimeout` argument in upload
* Fix face coordinates test

1.0.0 / 2016-09-20
============================
* First non-snapshot release
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ To use it, add the following dependency to your `build.sbt`:

resolvers += Resolver.file("Local Ivy", file(Path.userHome + "/.ivy2/local"))(Resolver.ivyStylePatterns)

libraryDependencies += "com.cloudinary" %% "cloudinary-core-scala" % "1.0.0"
libraryDependencies += "com.cloudinary" %% "cloudinary-core-scala" % "1.1.0"

If using the [Play 2.4](http://www.playframework.com/) you can add:

"com.cloudinary" %% "cloudinary-scala-play" % "1.0.0"
"com.cloudinary" %% "cloudinary-scala-play" % "1.1.0"

In your controller inject an instance of `CloudinaryResourceBuilder` and make sure to declare an implicit reference to the enclosed `Cloudinary` instance and import `preloadedFormatter`. For example:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ object Cloudinary {
final val OLD_AKAMAI_SHARED_CDN = "cloudinary-a.akamaihd.net";
final val AKAMAI_SHARED_CDN = "res.cloudinary.com";
final val SHARED_CDN = AKAMAI_SHARED_CDN;
final val VERSION = "1.0.0"
final val VERSION = "1.1.0"
final val USER_AGENT = s"cld-scala-$VERSION"

def configFromUrl(cloudinaryUrl: String): Map[String, Any] = {
Expand Down

0 comments on commit b9ef074

Please sign in to comment.