aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Rudolph <johannes.rudolph@gmail.com>2016-03-01 15:54:12 +0100
committerJohannes Rudolph <johannes.rudolph@gmail.com>2016-03-01 15:54:12 +0100
commitb32978752aa73db2158d5358f18dfaf156bc62ec (patch)
tree881a1685bd393391537426e4a76242242c6a77a2
parent9d55689cf180bd34f885c153f1a492a61fd97802 (diff)
downloadsbt-boilerplate-b32978752aa73db2158d5358f18dfaf156bc62ec.tar.gz
sbt-boilerplate-b32978752aa73db2158d5358f18dfaf156bc62ec.tar.bz2
sbt-boilerplate-b32978752aa73db2158d5358f18dfaf156bc62ec.zip
add notes for 0.6.0 and adapt README
-rw-r--r--README.md5
-rw-r--r--notes/0.6.0.markdown14
2 files changed, 17 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3e37902..5bcbe48 100644
--- a/README.md
+++ b/README.md
@@ -96,8 +96,9 @@ filename has no extension ".scala" is added automatically.
* Instances for zero arguments have to be supplied manually.
## Projects using sbt-boilerplate
-
- * [spray-routing](http://github.com/spray/spray) uses sbt-boilerplate to provide conversions to/from HLists
+
+ * [akka](https://github.com/akka/akka) uses sbt-boilerplate for akka-actor, akka-stream, and akka-http
+ * [spray-routing](https://github.com/spray/spray) uses sbt-boilerplate to provide conversions to/from HLists
* [product-collections](https://github.com/marklister/product-collections)
## License
diff --git a/notes/0.6.0.markdown b/notes/0.6.0.markdown
new file mode 100644
index 0000000..b83177f
--- /dev/null
+++ b/notes/0.6.0.markdown
@@ -0,0 +1,14 @@
+This release adds a few smallish fixes and removes previous inconveniences.
+
+ - [#12](https://github.com/sbt/sbt-boilerplate/issues/12) Literal sharp signs can now be escaped with `\#`. Thanks [@marklister](https://github.com/marklister).
+ - [#15](https://github.com/sbt/sbt-boilerplate/issues/15) Include source positions when template parsing fails.
+ - [#16](https://github.com/sbt/sbt-boilerplate/issues/16) Generated files include a signature and will be deleted if source file was deleted.
+ - [#17](https://github.com/sbt/sbt-boilerplate/issues/17) Generate templates in the test configuration. Thanks [@nrinaudo](https://github.com/nrinaudo).
+ - [#18](https://github.com/sbt/sbt-boilerplate/issues/18) Add ".scala" if template didn't include an extension
+ - [#19](https://github.com/sbt/sbt-boilerplate/issues/19) sbt-boilerplate is now an AutoPlugin (but needs to be enabled manually).
+
+## Migration notes
+
+ - This plugin is now an AutoPlugin. Replace `settings(Boilerplate.settings :_*)` with `enablePlugins(spray.boilerplate.BoilerplatePlugin)`
+ in your build.
+ - The source folder is now specified using the `boilerplateSource` key instead of `sourceDirectory in boilerplateGenerate`. \ No newline at end of file