Skip to content

Commit f084c9b

Browse files
committed
Set sonatypeHost to s01
1 parent 75a1d65 commit f084c9b

31 files changed

+32
-31
lines changed

build.sc

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import $ivy.`ba.sake::mill-hepek::0.0.2`
33

44
import mill._
55
import mill.scalalib._, scalafmt._, publish._
6-
import io.kipp.mill.ci.release.CiReleaseModule
6+
import io.kipp.mill.ci.release._
77
import ba.sake.millhepek.MillHepekModule
88

99
object sharaf extends SharafPublishModule {
@@ -78,6 +78,7 @@ trait SharafPublishModule extends SharafCommonModule with CiReleaseModule {
7878
Developer("sake92", "Sakib Hadžiavdić", "https://sake.ba")
7979
)
8080
)
81+
def sonatypeHost = Some(SonatypeHost.s01)
8182
}
8283

8384
trait SharafCommonModule extends ScalaModule with ScalafmtModule {

docs/src/utils/Consts.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ object Consts:
66

77
val ArtifactOrg = "ba.sake"
88
val ArtifactName = "sharaf"
9-
val ArtifactVersion = "0.6.0"
9+
val ArtifactVersion = "0.7.0"
1010

1111
val GhHandle = "sake92"
1212
val GhProjectName = "sharaf"

examples/scala-cli/demo.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
import io.undertow.Undertow
55
import ba.sake.querson.QueryStringRW

examples/scala-cli/form_handling.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
import io.undertow.Undertow
55
import scalatags.Text.all.*

examples/scala-cli/hello.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
import io.undertow.Undertow
55
import ba.sake.sharaf.*, routing.*

examples/scala-cli/html.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
import io.undertow.Undertow
55
import scalatags.Text.all.*

examples/scala-cli/htmx/htmx_active_search.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// https://htmx.org/examples/active-search/
55

examples/scala-cli/htmx/htmx_animations.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// https://htmx.org/examples/animations/
55

examples/scala-cli/htmx/htmx_bulk_update.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// https://htmx.org/examples/bulk-update/
55
import io.undertow.Undertow

examples/scala-cli/htmx/htmx_cascading_selects.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// https://htmx.org/examples/value-select/
55

examples/scala-cli/htmx/htmx_click_edit.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// https://htmx.org/examples/click-to-edit/
55
import io.undertow.Undertow

examples/scala-cli/htmx/htmx_click_to_load.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// https://htmx.org/examples/click-to-load/
55
import java.util.UUID

examples/scala-cli/htmx/htmx_delete_row.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// https://htmx.org/examples/delete-row/
55

examples/scala-cli/htmx/htmx_dialogs_bootstrap.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// https://htmx.org/examples/modal-bootstrap/
55

examples/scala-cli/htmx/htmx_dialogs_bootstrap_form.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// example of BS5 modal with a form
55

examples/scala-cli/htmx/htmx_dialogs_browser.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// https://htmx.org/examples/dialogs/
55

examples/scala-cli/htmx/htmx_edit_row.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// https://htmx.org/examples/edit-row/
55

examples/scala-cli/htmx/htmx_file_upload_js.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
import io.undertow.Undertow
55
import scalatags.Text.all.*

examples/scala-cli/htmx/htmx_infinite_scroll.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// https://htmx.org/examples/click-to-load/
55
import java.util.UUID

examples/scala-cli/htmx/htmx_inline_validation.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// https://htmx.org/examples/inline-validation/
55

examples/scala-cli/htmx/htmx_lazy_load.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
// https://htmx.org/examples/lazy-load/
55

examples/scala-cli/htmx/htmx_load_snippet.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
import io.undertow.Undertow
55
import scalatags.Text.all.*

examples/scala-cli/htmx/htmx_progress_bar.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33
import java.util.concurrent.TimeUnit
44

55
// https://htmx.org/examples/progress-bar/

examples/scala-cli/htmx/htmx_tabs_hateoas.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
import io.undertow.Undertow
55
import scalatags.Text.all.*

examples/scala-cli/json_api.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
import io.undertow.Undertow
55
import ba.sake.tupson.JsonRW

examples/scala-cli/json_api.test.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33
//> using test.dep org.scalameta::munit::1.0.0-M10
44

55
import ba.sake.tupson.*

examples/scala-cli/path_params.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
import io.undertow.Undertow
55
import ba.sake.sharaf.*, routing.*

examples/scala-cli/query_params.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
import io.undertow.Undertow
55
import ba.sake.querson.QueryStringRW

examples/scala-cli/sql_db.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//> using scala "3.4.2"
22
//> using dep org.postgresql:postgresql:42.7.1
33
//> using dep com.zaxxer:HikariCP:5.1.0
4-
//> using dep ba.sake::sharaf:0.6.0
4+
//> using dep ba.sake::sharaf:0.7.0
55
//> using dep ba.sake::squery:0.3.0
66

77
import io.undertow.Undertow

examples/scala-cli/static_files.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
import io.undertow.Undertow
55
import ba.sake.sharaf.*, routing.*

examples/scala-cli/validation.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//> using scala "3.4.2"
2-
//> using dep ba.sake::sharaf:0.6.0
2+
//> using dep ba.sake::sharaf:0.7.0
33

44
import io.undertow.Undertow
55
import ba.sake.querson.QueryStringRW

0 commit comments

Comments
 (0)