Skip to content

Bump new minor release #26

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

Merged
3 commits merged into from
Jul 6, 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
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ lazy val shapeless = (project in file("."))
organization := "org.scala-exercises",
name := "exercises-shapeless",
scalaVersion := "2.11.7",
version := "0.1.2",
version := "0.2.1-SNAPSHOT",
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots"),
Resolver.sonatypeRepo("releases")
Expand Down
6 changes: 5 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
addSbtPlugin("org.scala-exercises" % "sbt-exercise" % "0.1.1", "0.13", "2.10")
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots")
)

addSbtPlugin("org.scala-exercises" % "sbt-exercise" % "0.2.1-SNAPSHOT", "0.13", "2.10")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/ArityExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object Helper {
*
* @param name arity
*/
object ArityExercises extends FlatSpec with Matchers with exercise.Section {
object ArityExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {
import Helper._

/** Abstracting over arity
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/AutoTypeClassExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ object MonoidSyntax {
* @param name auto_typeclass_derivation
*
*/
object AutoTypeClassExercises extends FlatSpec with Matchers with exercise.Section {
object AutoTypeClassExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {

object Helper {

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/CoproductExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import shapeless._
*
* @param name coproducts
*/
object CoproductExercises extends FlatSpec with Matchers with exercise.Section {
object CoproductExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {

object Helper {
type ISB = Int :+: String :+: Boolean :+: CNil
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/ExtensibleRecordsExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import ops.hlist._
* @param name extensible_records
*
*/
object ExtensibleRecordsExercises extends FlatSpec with Matchers with exercise.Section {
object ExtensibleRecordsExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {

import shapeless._; import syntax.singleton._; import record._

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/GenericExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ object GenericHelper {
*
* @param name generic
*/
object GenericExercises extends FlatSpec with Matchers with exercise.Section {
object GenericExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {
import GenericHelper._

/** {{{
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/HListExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ object CovariantHelper {
*
* @param name heterogenous_lists
*/
object HListExercises extends FlatSpec with Matchers with exercise.Section {
object HListExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {

/** It has a `map` operation, applying a polymorphic function value across its elements. This means that it subsumes both
* typical `HList`'s and also `KList`'s (`HList`'s whose elements share a common outer type constructor).
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/HMapExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import ops.hlist._
*
* @param name HMap
*/
object HMapExercises extends FlatSpec with Matchers with exercise.Section {
object HMapExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {

object Helper {
class BiMapIS[K, V]
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/LazyExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import shapeless._
*
* @param name lazy
*/
object LazyExercises extends FlatSpec with Matchers with exercise.Section {
object LazyExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {

object Helper {

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/LensesExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import shapeless._
*
* @param name lenses
*/
object LensesExercises extends FlatSpec with Matchers with exercise.Section {
object LensesExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {

object Helper {
// A pair of ordinary case classes ...
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/PolyExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import poly.{ ~> }
*
* @param name polymorphic_function_values
*/
object PolyExercises extends FlatSpec with Matchers with exercise.Section {
object PolyExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {

object choose extends (Set ~> Option) {
def apply[T](s: Set[T]) = s.headOption
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/ShapelessLib.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package shapelessex
*
* @param name shapeless
*/
object ShapelessLib extends exercise.Library {
object ShapelessLib extends org.scalaexercises.definitions.Library {
override def owner = "scala-exercises"
override def repository = "exercises-shapeless"

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/SingletonExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import shapeless._
* @param name singletons_literals
*
*/
object SingletonExercises extends FlatSpec with Matchers with exercise.Section {
object SingletonExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {

/** Singleton types bridge the gap between the value level and the type level and hence allow the exploration in Scala
* of techniques which would typically only be available in languages with support for full-spectrum dependent types.
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/SizedExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ object SizedHelper {
*
* @param name sized
*/
object SizedExercises extends FlatSpec with Matchers with exercise.Section {
object SizedExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {
import SizedHelper._

/** In the example below we define a method `csv` whose signature guarantees at compile time that there are exactly as many
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/TuplesHListExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import shapeless._
* shapeless allows standard Scala tuples to be manipulated in exactly the same ways as `HList`s
* @param name tuples
*/
object TuplesHListExercises extends FlatSpec with Matchers with exercise.Section {
object TuplesHListExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {

import syntax.std.tuple._

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/TypeCheckingExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import scala.util.Try
*
* @param name type_checking
*/
object TypeCheckingExercises extends FlatSpec with Matchers with exercise.Section {
object TypeCheckingExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {

/** The testing library ScalaTest also has a way of checking that a snippet of code
* does not compile: pass it in to `assertTypeError`. What will happen if we combine
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/shapeless/TypeSafeCastExercises.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import shapeless._
*
* @param name type_safe_cast
*/
object TypeSafeCastExercises extends FlatSpec with Matchers with exercise.Section {
object TypeSafeCastExercises extends FlatSpec with Matchers with org.scalaexercises.definitions.Section {

/**
*/
Expand Down