Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
John Johnson II committed Jun 18, 2022
1 parent 061550f commit ec4537f
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 13 deletions.
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 John Johnson II
Copyright (c) 2022 Potencia, LLC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
31 changes: 23 additions & 8 deletions build.sbt
@@ -1,10 +1,29 @@
import LiveReloadStartMode._

inThisBuild(Def.settings(
scalaVersion := "2.13.8",
version := "0.1.0-SNAPSHOT",
version := "1.0.0",
versionScheme := Some("early-semver"),
organization := "com.potenciasoftware",
organizationName := "rebel",
organizationName := "potencia",
organizationHomepage := Some(url("https://github.com/potencia/")),
description := "Build applications that use the Scala REPL as a user interface",
scmInfo := Some(
ScmInfo(
url("https://github.com/potencia/rebel"),
"scm:git@github.com:potencia/rebel.git"
)
),
developers := List(
Developer(
id = "johnsonjii",
name = "John Johnson II",
email = "johnsonjii@potenciasoftware.com",
url = url("https://github.com/johnsonjii"))
),
licenses := List("MIT" -> new URL("https://raw.githubusercontent.com/potencia/rebel/master/LICENSE")),
homepage := Some(url("https://github.com/potencia/rebel")),
pomIncludeRepository := { _ => false },
publishTo := Some("releases" at "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2"),
publishMavenStyle := true,
scalacOptions ++= Seq(
"-encoding", "utf8",
"-deprecation",
Expand All @@ -14,9 +33,6 @@ inThisBuild(Def.settings(
),
))

Global / onChangedBuildSource := ReloadOnSourceChanges
Global / liveReloadStartMode := Manual

lazy val rebel = (project in file("."))
.settings(
name := "rebel",
Expand All @@ -26,4 +42,3 @@ lazy val rebel = (project in file("."))
libraryDependencies += "org.scalamock" %% "scalamock" % "5.2.0" % Test,
)

// See https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html for instructions on how to publish to Sonatype.
1 change: 0 additions & 1 deletion project/plugins.sbt
@@ -1,2 +1 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.0.0-RC1")
addSbtPlugin("com.potenciasoftware" % "sbt-scalajs-live-reload" % "0.0.1-SNAPSHOT")
2 changes: 1 addition & 1 deletion src/main/scala/com/potenciasoftware/rebel/BaseRepl.scala
Expand Up @@ -26,7 +26,7 @@ class BaseRepl {
* For documentation of these options, see:
* <pre>scalac -help</pre>
*
* For instance, the -deprecation flag is [[Settings.deprecation]].
* For instance, the -deprecation flag is Settings.deprecation.
* It can be enabled like so:
*
* {{{
Expand Down
Expand Up @@ -6,13 +6,13 @@ trait ExecutionWrapper {
* The exact code to inject to invoke the execution wrapper.
*
* This should be a fully qualified call to a method that takes one
* parameter of [[=> Any]] and returns [[String]]. The parameter list
* parameter of (=> Any) and returns String. The parameter list
* portion of the method call (including parenthesis) should be omitted
* from this string.
*
* The string that is returned from the wrapped method is what will be
* output to the REPL. This would normally be the string representation of
* the [[=> Any]] input.
* the (=> Any) input.
*
* For example:
* {{{
Expand Down

0 comments on commit ec4537f

Please sign in to comment.