Skip to content

Commit

Permalink
Bump version 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
djx314 committed May 23, 2023
1 parent da637e1 commit 71d4dcf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ object Adt extends TypeAdtAlias with TypeAdtRuntimeApply {

class Adapter[Target, Poly](val value: Target)
object Adapter {
def apply[Target, Poly](t: Target): Adapter[Target, Poly] = new Adapter(t)
def unapply[Target, Poly](adapter: Adapter[Target, Poly]): Option[Target] = Some(adapter.value)
def apply[Target, Poly](t: Target): Adapter[Target, Poly] = new Adapter(t)
def unapply[Target, Poly](adapter: Adapter[Target, Poly]): Some[Target] = Some(adapter.value)
}
type Implicitly[T] = Adapter[T, ImplicitlyAdtContext.type]

Expand Down
2 changes: 1 addition & 1 deletion scripts/push-settings-plugin.sbt.script
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// scala code override def requires: Plugins = net.scalax.simple.nat.sbt.ProjectKeys

// start setting
version := "0.0.1-RC1"
version := "0.0.1"
// end setting

// start setting
Expand Down

0 comments on commit 71d4dcf

Please sign in to comment.