Skip to content
This repository has been archived by the owner on Feb 8, 2022. It is now read-only.

Fix homepage #216

Merged
merged 1 commit into from
Apr 20, 2018
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Since the creation of Algebra, we have also decided to interoperate
with the [Cats](http://github.com/typelevel/cats) project. Algebra and
Cats interoperate using the *cats-kernel* module.

See the [Algebra website](https://typelevel.org/algebra) for more information. The latest API docs are hosted at Algebra's [ScalaDoc index](https://typelevel.org/algebra/api/).
See the [Algebra website](https://typelevel.github.io/algebra) for more information. The latest API docs are hosted at Algebra's [ScalaDoc index](https://typelevel.github.io/algebra/api/).

## getting algebra

Expand Down Expand Up @@ -89,7 +89,7 @@ requirements) you want generic parameters to possess.

For a tour of the Algebraic structures that `algebra` offers, see the
extensive
[overview on the Algebra website](https://typelevel.org/algebra/typeclasses/overview.html).
[overview on the Algebra website](https://typelevel.github.com/algebra/typeclasses/overview.html).

### Copyright and License

Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ lazy val docSettings = Seq(
micrositeDescription := "Algebraic Typeclasses for Scala.",
micrositeAuthor := "Algebra's contributors",
micrositeHighlightTheme := "atom-one-light",
micrositeHomepage := "https://typelevel.org/algebra/",
micrositeHomepage := "https://typelevel.github.io/algebra/",
micrositeBaseUrl := "algebra",
micrositeDocumentationUrl := "api/",
micrositeGithubOwner := "typelevel",
Expand Down Expand Up @@ -159,10 +159,10 @@ lazy val benchmark = project.in(file("benchmark"))
.dependsOn(coreJVM)

lazy val publishSettings = Seq(
homepage := Some(url("http://typelevel.org/algebra")),
homepage := Some(url("http://typelevel.github.io/algebra")),
licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT")),
autoAPIMappings := true,
apiURL := Some(url("https://typelevel.org/algebra/api/")),
apiURL := Some(url("http://typelevel.github.io/algebra")),

releaseCrossBuild := true,
releasePublishArtifactsAction := PgpKeys.publishSigned.value,
Expand Down