Skip to content

Commit

Permalink
Merge branch 'master' into scalafmt-3.0.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
jcazevedo committed Apr 18, 2021
2 parents 365ad4f + ae02c6f commit fd8e5de
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/build.sbt
Expand Up @@ -28,4 +28,4 @@ micrositeGitterChannel := false // ugly
mdocExtraArguments += "--no-link-hygiene"
mdocVariables := Map("VERSION" -> version.value)

skip in publish := true
publish / skip := true
2 changes: 1 addition & 1 deletion docs/docs/docs/faq.md
Expand Up @@ -26,7 +26,7 @@ can [shade](https://github.com/sbt/sbt-assembly#shading) shapeless by
adding to your `assembly.sbt` file the following setting:

```scala
assemblyShadeRules in assembly := Seq(ShadeRule.rename("shapeless.**" -> "new_shapeless.@1").inAll)
assembly / assemblyShadeRules := Seq(ShadeRule.rename("shapeless.**" -> "new_shapeless.@1").inAll)
```

#### Maven
Expand Down
6 changes: 3 additions & 3 deletions scripts/update_website.sh
Expand Up @@ -28,13 +28,13 @@ fi
ls -d -1 "$WEBSITE_DIR"/** | grep -Ev 'v[0-9]+\.[0-9]+' | xargs rm -r

# generate the main website pages
sbt "set siteDirectory in docs := file(\"$WEBSITE_DIR\")" \
sbt "set docs / siteDirectory := file(\"$WEBSITE_DIR\")" \
makeMicrosite

# generate the website pages for this version
rm -rf 'docs/target/streams/_global/makeSite'
sbt "set siteDirectory in docs := file(\"$WEBSITE_DIR/v$VERSION\")" \
"set micrositeBaseUrl in docs := \"v$VERSION\"" \
sbt "set docs / siteDirectory := file(\"$WEBSITE_DIR/v$VERSION\")" \
"set docs / micrositeBaseUrl := \"v$VERSION\"" \
makeMicrosite

# show Git status and prompt for user confirmation before pushing changes
Expand Down
2 changes: 1 addition & 1 deletion tests/build.sbt
Expand Up @@ -4,4 +4,4 @@ name := "pureconfig-tests"

crossScalaVersions := Seq(scala212, scala213, scala30)

skip in publish := true
publish / skip := true

0 comments on commit fd8e5de

Please sign in to comment.