Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.1.0 Release Prep #28

Merged
merged 3 commits into from
Jan 17, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ once reported on Github.

## Including

You can include Formality directly as a dependency in your `build.sbt`:
You can include Formality directly as a dependency in your `build.sbt`,
suffixing the major and minor Lift version you are using (3.0 and 3.1 are
currently supported):

```
libraryDependencies ++= Seq(
"com.hacklanta" %% "lift-formality" % "1.0.0"
"com.hacklanta" %% "lift-formality_3.1" % "1.1.0"
)
```

Expand Down
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ name := "lift-formality"

organization := "com.hacklanta"

version := "1.1.0-SNAPSHOT"
version := "1.1.0"

scalaVersion := "2.11.12"

// Disable package scaladocs, as 2.11.12 Scaladoc + Java 9 seems to go boom.
publishArtifact in (Compile, packageDoc) := false

liftVersion <<= liftVersion ?? "3.1.0"

liftEdition <<= liftVersion apply { _.substring(0,3) }
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.8
sbt.version=0.13.17-RC1