Skip to content

Commit

Permalink
update version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yun Liaw committed Feb 16, 2017
1 parent 1c84640 commit 9f4da96
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

`RapidString` uses [string interpolation](http://docs.scala-lang.org/sips/pending/string-interpolation.html) syntax.

import com.vpon.rapidstring.RapidString._
import com.quadas.rapidstring.RapidString._
def poem() {
val f = "forgotten"
val m = "machinery"
Expand All @@ -24,9 +24,7 @@
Put these lines in your `build.sbt` if you use [Sbt](http://www.scala-sbt.org/):

resolvers += Resolver.bintrayRepo("quadas", "maven")
libraryDependencies += "com.vpon" %% "rapidstring" % "0.1.2"
libraryDependencies += "com.quadas" %% "rapidstring" % "0.1.3.1"

See http://mvnrepository.com/artifact/com.vpon/rapidstring_2.11/0.1.2 if you use [Maven](http://maven.apache.org/)
or other build systems.

Note that `RapidString` requires [Scala](http://www.scala-lang.org/) `2.11`.
See http://mvnrepository.com/artifact/com.quadas/rapidstring_2.11/0.1.3.1 if you use [Maven](http://maven.apache.org/)
or other build systems.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name in Global := "rapidstring"
scalaVersion in Global := "2.11.8"
crossScalaVersions in Global := Seq("2.11.8", "2.12.1")

version := "0.1.3.1"
version := "0.1.3.2"

scalacOptions := Seq(
"-deprecation" // Emit warning and location for usages of deprecated APIs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* limitations under the License.
*/

package com.vpon.rapidstring
package com.quadas.rapidstring

import scala.language.experimental.macros
import scala.reflect.macros.whitebox.Context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
* limitations under the License.
*/

package com.vpon.rapidstring.test
package com.quadas.rapidstring.test

import org.scalatest._
import com.vpon.rapidstring.RapidString._
import com.quadas.rapidstring.RapidString._

class ExampleSpec extends FlatSpec with Matchers {

Expand Down

0 comments on commit 9f4da96

Please sign in to comment.