From f8ba965b907bc3c770d98977d636438f71dabfc3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Kat=20March=C3=A1n?= <kzm@zkat.tech>
Date: Tue, 13 Apr 2021 19:33:41 -0700
Subject: [PATCH] docs: add changelog

---
 .clog.toml   |  5 +++++
 CHANGELOG.md | 24 ++++++++++++++++++++++++
 2 files changed, 29 insertions(+)
 create mode 100644 .clog.toml
 create mode 100644 CHANGELOG.md

diff --git a/.clog.toml b/.clog.toml
new file mode 100644
index 0000000..f3501fc
--- /dev/null
+++ b/.clog.toml
@@ -0,0 +1,5 @@
+[clog]
+repository = "https://github.com/zkat/big-brain"
+subtitle = ""
+changelog = "CHANGELOG.md"
+from-latest-tag = true
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..95c41ce
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,24 @@
+<a name="0.3.0"></a>
+## 0.3.0 (2021-04-14)
+
+This is a major overhaul of the Bevy API. It removes `.ron` support
+altogether, in favor of plain old Rust builders.
+
+#### Breaking Changes
+
+* The `.ron` Thinker definition API is gone. Use the ThinkerBuilder API instead.
+* The `Action` and `Scorer` derive macros are gone, including all of `big_brain_derive`.
+* Measures and Weights are gone.
+* `big-brain` no longer exports everything from the toplevel. Use `big_brain::prelude::*` instead.
+
+#### Bug Fixes
+
+Probably.
+
+#### Features
+
+* New builder-based Thinker API!
+* Composite Scorers: `FixedScore`, `AllOrNothing`, and `SumOfScorers`.
+* Composite Action: `Steps`, for sequential Action execution.
+
+
-- 
GitLab