From 1dd237b3f742b763224e1d2cfdefdacecc31f69e Mon Sep 17 00:00:00 2001 From: jkeifer Date: Wed, 21 Jun 2023 15:11:08 -0700 Subject: [PATCH] update changelog --- CHANGELOG.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1a37b4..e0783a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [v0.2.0] - 2023-06-22 + +### Added + +- `list-fixtures` command ([#10]) +- `load-fixture` command ([#10]) +- `DB.execute_sql()` method for running arbitrary SQL against a database ([#10]) + +### Changed + +- Schema version when applying `schema.sql` comes from max migration version, + removing the need to track the version table and update it in that file. ([#10]) + ## [v0.1.0] - 2023-05-25 Initial release -[unreleased]: https://github.com/element84/dbami/compare/v0.1.0...main +[unreleased]: https://github.com/element84/dbami/compare/v0.2.0...main +[v0.2.0]: https://github.com/element84/dbami/compare/v0.1.0...v0.2.0 [v0.1.0]: https://github.com/element84/dbami/tree/v0.1.0 + +[#10]: https://github.com/Element84/dbami/pull/10