From c97d0d4c54ba392f75b1e78fe203063b9184963f Mon Sep 17 00:00:00 2001 From: Steven Moy Date: Tue, 1 Aug 2023 10:12:34 -0700 Subject: [PATCH 1/2] Prep for release 0.11.7 --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f704068da..2e9f4cdb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,21 @@ # Change Log +## 0.11.7 (Aug 1, 2023) + +DOCS: +* Change project description on PyPI [#527](https://github.com/noqdev/iambic/pull/527) +** There were some reference to the old project name. Those were cleaned up. + +BUG FIXES: +* Fix #491 Support "merge", "squash", and "rebase" merge method [#525](https://github.com/noqdev/iambic/pull/525) +* Fix security/dependabot/26 Bump certifi [#524](https://github.com/noqdev/iambic/pull/524) + + +THANKS: +`datfinesoul` for reporting GitHub linear history use case. [#491](https://github.com/noqdev/iambic/issues/491) +`Simon D.` in community slack for reporting the old project name references. [#527](https://github.com/noqdev/iambic/pull/527) + ## 0.11.03 (July 31, 2023) BUG FIXES: From 4fd2f151edd06b360c4d643e57359e358b788391 Mon Sep 17 00:00:00 2001 From: Steven Moy Date: Tue, 1 Aug 2023 10:36:43 -0700 Subject: [PATCH 2/2] Add to changelog --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e9f4cdb5..7236bccc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Change Log -## 0.11.7 (Aug 1, 2023) +## 0.11.8 (Aug 1, 2023) DOCS: * Change project description on PyPI [#527](https://github.com/noqdev/iambic/pull/527) @@ -10,7 +10,8 @@ DOCS: BUG FIXES: * Fix #491 Support "merge", "squash", and "rebase" merge method [#525](https://github.com/noqdev/iambic/pull/525) * Fix security/dependabot/26 Bump certifi [#524](https://github.com/noqdev/iambic/pull/524) - +* Fixed bug where none type description was causing an exception on role [#528](https://github.com/noqdev/iambic/pull/528) +* Attaching and detaching role tags now 2 distinct operations. Fixes to role attribute value resolver on Role._apply_to_account. [#528](https://github.com/noqdev/iambic/pull/528) THANKS: `datfinesoul` for reporting GitHub linear history use case. [#491](https://github.com/noqdev/iambic/issues/491)