Release version 0.1.1, compiled to be compatible with Java 7.
This commit is contained in:
parent
62f4cbb813
commit
b39a2f6f5f
2 changed files with 10 additions and 2 deletions
8
RELEASE-PROCESS.md
Normal file
8
RELEASE-PROCESS.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
How to release
|
||||
==============
|
||||
|
||||
* Increment the version number in `project/build.scala`.
|
||||
* `sbt publishSigned`
|
||||
* Go to https://oss.sonatype.org/#stagingRepositories and follow
|
||||
[these instructions](http://central.sonatype.org/pages/releasing-the-deployment.html).
|
||||
* Wait for a bit... https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.capnproto%22
|
|
@ -108,7 +108,7 @@ object Shared {
|
|||
"-unchecked",
|
||||
"-feature"
|
||||
),
|
||||
javacOptions ++= Seq("-source", "1.7", "-target", "1.7"),
|
||||
javacOptions in (Compile, compile) ++= Seq("-source", "1.7", "-target", "1.7"),
|
||||
resolvers += Resolver.sonatypeRepo("snapshots"),
|
||||
resolvers += Resolver.sonatypeRepo("releases"),
|
||||
shellPrompt := ShellPrompt.buildShellPrompt,
|
||||
|
@ -123,7 +123,7 @@ object Shared {
|
|||
},
|
||||
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials"),
|
||||
publishMavenStyle := true,
|
||||
version := "0.1.0",
|
||||
version := "0.1.1",
|
||||
autoScalaLibrary := false,
|
||||
publishArtifact in Test := false,
|
||||
autoScalaLibrary in test := false,
|
||||
|
|
Loading…
Reference in a new issue