Skip to content

Commit

Permalink
Version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nitzanj committed Nov 11, 2020
1 parent ea3a543 commit af82339
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

2.0.0 / 2020-11-10
==================

* Bump scala version to 2.12.8 (#29)
* Drop support for scala 2.10.4

1.2.2 / 2019-07-26
==================

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ 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.2.1"
libraryDependencies += "com.cloudinary" %% "cloudinary-core-scala" % "2.0.0"

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

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.2.2"
final val VERSION = "2.0.0"
final val USER_AGENT = s"cld-scala-$VERSION"

def configFromUrl(cloudinaryUrl: String): Map[String, Any] = {
Expand Down
2 changes: 1 addition & 1 deletion project/Common.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object Common {
def version = "1.2.2"
def version = "2.0.0"
def playVersion = System.getProperty("play.version", "2.6.6")
def scalaVersion = "2.12.8"
def scalaVersions = Seq("2.11.5", scalaVersion)
Expand Down

0 comments on commit af82339

Please sign in to comment.