Skip to content

Commit

Permalink
0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Hamblen committed Dec 19, 2011
1 parent f734fc5 commit a40398f
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 deletions.
32 changes: 31 additions & 1 deletion notes/0.3.2.markdown
Original file line number Diff line number Diff line change
@@ -1 +1,31 @@
Fixes problem with github credential storage.
### Integration with ls.implicit.ly

Giter8 templates can now use *ls* to resolve the latest published
version of a library. Just specify the library name and authoritative
github account as a property value. For example:

name = My Template Project
giter8_version = ls(giter8-plugin, n8han)
description = Creates a giter8 project template.

This template ([n8han/giter8.g8][gg8]) assigns the latest version of
giter8-plugin to the property `giter8_version`, which you can then
refer from other files like any other template value.

[gg8]: https://github.com/n8han/giter8.g8

Templates that use this feature will not be compatible with other
versions of giter8, so users are encouraged to upgrade right away. You
can upgrade (or install) giter8 with one [conscript][cs] command:

[cs]: https://github.com/n8han/conscript

cs n8han/giter8

### Fixes

* Problem with github credential storage. { [eed3si9n][ee] }
* [Invoking git executable on Windows][30] { [eed3si9n][ee] }

[30]: https://github.com/n8han/giter8/issues/30
[ee]: https://github.com/eed3si9n
4 changes: 2 additions & 2 deletions project/build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ object Builds extends sbt.Build {
import Keys._

lazy val buildSettings = Defaults.defaultSettings ++ Seq(
version := "0.3.2-SNAPSHOT",
version := "0.3.2",
organization := "net.databinder",
scalaVersion := "2.9.1",
libraryDependencies ++= Seq(
Expand Down Expand Up @@ -45,5 +45,5 @@ object Builds extends sbt.Build {
}
))
lazy val lsLibrary =
ProjectRef(uri("git://github.com/softprops/ls.git#474d7040c6ba569ee597725a0c4ca5f3b7f5ea26"), "library")
ProjectRef(uri("git://github.com/softprops/ls.git#29d66c5"), "library")
}

0 comments on commit a40398f

Please sign in to comment.