From bda7f494923ec083fd0ac27085c154390f356d41 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 19 Aug 2014 10:02:17 -0700 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c26461b20..05e0a2b7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,24 @@ ## 0.2.0 (unreleased) +BACKWARDS INCOMPATIBILITIES: + + * We've replaced the configuration language in use from a C library to + a pure-Go reimplementation. In the process, we removed some features + of the language since it was too flexible: + * Semicolons are no longer valid at the end of lines + * Keys cannot be double-quoted strings: `"foo" = "bar"` is no longer + valid. + BUG FIXES: * core: Variables are validated to not contain interpolations. [GH-180] +PLUGIN CHANGES: + + * **New Package:** `helper/schema`. This introduces a high-level framework + for easily writing new providers and resources. The Heroku provider has + been converted to this as an example. + ## 0.1.1 (August 5, 2014) FEATURES: