Skip to content
This repository was archived by the owner on Mar 5, 2021. It is now read-only.

Commit d942b21

Browse files
committed
[release] Version 0.33.
1 parent 5271173 commit d942b21

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ MISC
4949

5050
* Removed test dependency on Scalamock.
5151

52+
5253
##### Play SDK
5354

5455
API

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To use the Play SDK in your Play application, add the following to your build fi
2222
````scala
2323
resolvers += "sphere" at "http://public-repo.ci.cloud.commercetools.de/content/repositories/releases"
2424

25-
libraryDependencies += "io.sphere" %% "sphere-play-sdk" % "0.32" withSources()
25+
libraryDependencies += "io.sphere" %% "sphere-play-sdk" % "0.33" withSources()
2626
````
2727

2828
To get started quickly, check out our [tutorial](http://sphere.io/dev/Play_SDK.html), which includes creation of a fully functional sample shop.
@@ -33,7 +33,7 @@ If you want to use just the Java client, the Maven dependency is:
3333
<dependency>
3434
<groupId>io.sphere</groupId>
3535
<artifactId>sphere-java-client</artifactId>
36-
<version>0.32</version>
36+
<version>0.33</version>
3737
</dependency>
3838
````
3939

java-client/src/main/java/io/sphere/internal/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
/** Current version of the Sphere Java client, useful for User Agent HTTP header, logging, etc. */
44
public final class Version {
5-
public static final String version = "0.32-SNAPSHOT";
5+
public static final String version = "0.33";
66
}

project/PlaySDKBuild.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ object PlaySDKBuild extends Build {
1313

1414
lazy val spherePlaySDK = play.Project(
1515
"sphere-play-sdk",
16-
"0.33-SNAPSHOT",
16+
"0.33",
1717
Seq(javaCore),
1818
path = file("play-sdk")
1919
).dependsOn(sphereJavaClient % "compile->compile;test->test").
@@ -35,7 +35,7 @@ object PlaySDKBuild extends Build {
3535
settings =
3636
Defaults.defaultSettings ++ standardSettings ++ scalaSettings ++ java6Settings ++
3737
testSettings(Libs.scalatest) ++ publishSettings ++ Seq(
38-
version := "0.33-SNAPSHOT",
38+
version := "0.33",
3939
autoScalaLibrary := false, // no dependency on Scala standard library (just for tests)
4040
crossPaths := false,
4141
libraryDependencies ++= Seq(

0 commit comments

Comments
 (0)