Releases: foundweekends/giter8
0.11.0
feature enhancements
- Adds support for sbt 1.0 #350 by @MasseGuillaume
- Adds support for
-o --out
#346 by @wolfendale - Adds
projectName
formatter #354 by @ChristopherDavenport - Adds
space
andpackage
formatting #380 by @gheine - Multiple formats on file and directory names #370 by @matt-wittmann
- Supports capture of multiline template parameters from command line #367 by @benhutchison
bug fixes and improvements
- Bumps to JGit 4.9.0.201710071750-r #353 by @takezoe
- Prints filename of template that erred #355 by @benhutchison
- Fixes usage text #357 by @sunghyunzz
- Adds example for conditional files #374 by @notmu
- Copies scaffolds in g8 and g8Test #376 by @takezoe
- Fixes default g8 home resolution #379 by @konopski
- and various upkeep by @xuwei-k like #377, #378, etc.
participation
Special thanks to the contributors for making this release a success.
$ git shortlog -sn --no-merges v0.10.0...master
12 xuwei-k
11 Michael Wolfendale
8 kenji yoshida
5 Eugene Yokota
2 Marconi Lanna
2 !μ
2 Ben Hutchison
2 Christopher Davenport
2 Gregor Heine
2 Naoki Takezoe
1 Lukasz Konopski
1 Chris Davenport
1 Sunghyun Hwang
1 Guillaume Massé
1 Matt Wittmann
0.10.0
conditionals
Starting Giter8 0.10.0, all fields have a property named truthy
to be used in conditional expressions.
"y"
, "yes"
, and "true"
evaluate to true
; anything else evaluates to false
.
$if(scala212.truthy)$
scalaVersion := "2.12.3"
$elseif(scala211.truthy)$
scalaVersion := "2.11.11"
$else$
scalaVersion := "2.10.6"
$endif$
verbatim arguments uses gitignore
Giter8 0.10.0 supports .gitignore
format for the verbatim
field, such as /foo/**/*.html
.
#324 by @iPomme and #341 by @wolfendale
improvements and fixes
- Code up keep by @xuwei-k and @Philippus
notes
Special thanks to the contributors for making this release a success. According to git shortlog -sn --no-merges v0.9.0...master
, compared to 0.9.0, there were 13 (non-merge) commits, by nine contributors: Kenji Yoshida (xuwei-k), Marconi Lanna, Michael Wolfendale, Artyom Artemyev, Philippus Baalman, Sanjiv Sahayam, Nicolas Jorand, Eugene Yokota, and Matt Kantor. Thank you!
0.9.0
0.9.0 rolls back refactoring changes that went into 0.8.0 since it introduced many regressions.
improvements
fixes
0.8.0
enhancements
- Adds back git tag support. #267 by @foxmk
- Adds
-d some-directory/template
option for templates in a subdirectory. #269 by @lachatak - Adds support to configure Maven repository location using file
$G8_HOME/mvnrepo
. #271 by @konopski - Adds optional
baseDirectory
parameter torun
. #278 by @cunei - Adds support to look for only the stable version from Maven Central e.g.
maven(org.scalatest, scalatest_2.12, stable)
. #275 by @ssanj
improvements and fixes
- Refactoring work by @foxmk and @xuwei-k
- Fixes Giter8 not picking up GitHub default branch. #263 by @foxmk
- Restores
-f
flag. #277 by @foxmk
notes
Special thanks to the contributors for making this release a success. According to git shortlog -sn --no-merges v0.7.2..0.8.x
, compared to 0.7.2, there were 66 (non-merge) commits, by seven contributors: Artyom Artemyev, Kenji Yoshida, Sanjiv Sahayam, Antonio Cunei, Krisztian Lachata, Eugene Yokota, and Lukasz Konopski. Thank you!
0.7.2
minor enhancements and fixes
- Adds logback as dependency. #220 by @padilo
- Snake format will now change hyphen to underscore. #245 by @eed3si9n
- Fixes access to private repos. #248 by @patrick-premont
- Copies executable attributes when copying
file://
. #249 by @kirillsablin
0.7.1
0.7.0
new management and Apache v2
This is the first release since the development is passed on to
foundweekends project.
- We've relicensed Giter8 under Apache v2 license after contacting
previous contributors and getting their approvals. #194 - Organization name is changed to
org.foundweekends.giter8
. - The sbt plugins were renamed to
sbt-giter8
andsbt-giter8-scaffold
. - Created Pamflet documentation.
bug fixes and improvements
- Better error handling when templates do not compile. #193 by @njlg
- Supports Git URLs that start with
ssh://
. #192 by @njlg - Fixes sbt-giter8 not expanding dynamic default properties. #165 by @sattvik
ls(..)
property is dropped. #201 by @eed3si9n
root layout
Giter8 0.7.0 introduces an experimental layout called root layout.
When Giter8 does not find src/main/g8
, it will simply use the root directory
of the specified Git repository as the template directory.
The default.properties
file can be placed either at the root directory
or in project
directory.
This also means that you can no longer include template fields in the files
under project
, so the application of root layout is pretty limited. #202 by @eed3si9n
upgrade
If you're using conscript:
cs foundweekends/giter8