From d53ca67dbbff3e136932e93ec6b4d3d6b6c68040 Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Wed, 8 Jan 2020 15:19:19 +0100 Subject: [PATCH 1/2] The propertiesAt:put: method now expect an array as second argument. Fixes #293 --- src/Material-Design-Lite-Widgets/MDLHighLevelWidget.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Material-Design-Lite-Widgets/MDLHighLevelWidget.class.st b/src/Material-Design-Lite-Widgets/MDLHighLevelWidget.class.st index 96e95463..a16b1a92 100644 --- a/src/Material-Design-Lite-Widgets/MDLHighLevelWidget.class.st +++ b/src/Material-Design-Lite-Widgets/MDLHighLevelWidget.class.st @@ -110,5 +110,5 @@ MDLHighLevelWidget >> style: aString [ nextPutAll: aString ] ] ifAbsent: [ aString ]. - self propertiesAt: #style: put: stringToAdd + self propertiesAt: #style: put: {stringToAdd} ] From a4e128a2db52df3489df95393ef58b45a3de2d89 Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Thu, 9 Jan 2020 10:59:16 +0100 Subject: [PATCH 2/2] v2.2.1 --- CHANGELOG.md | 9 +++++++-- src/Material-Design-Lite-Demo/MDLDemo.class.st | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebb33ea7..d5ff56c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,15 @@ - + + +# [v2.2.1](https://github.com/DuneSt/MaterialDesignLite/compare/v2.2.0...v2.2.1) (2020-01-09) + +## Bug fixes + +* MDLHighLevelWidget #style: is broken ([057cd462](https://github.com/DuneSt/MaterialDesignLite/commit/057cd462fc0f9c7c8e69602e3237f82784dd719d)) # [v2.2.0](https://github.com/DuneSt/MaterialDesignLite/compare/v2.1.7...v2.2.0) (2019-10-29) ## New features - * Table widget - A component to describe the columns of a table instead of giving collection of rows ([0f40cd36](https://github.com/DuneSt/MaterialDesignLite/commit/0f40cd3675cc937f61a21cefcccf26b413afc1c7)) * Expansion panel - As brush or widget ([7bc5485f](https://github.com/DuneSt/MaterialDesignLite/commit/7bc5485fcd3093b4f63611762ad61a9edbb9ce4d)) ([af0681f6](https://github.com/DuneSt/MaterialDesignLite/commit/af0681f6aaa8315f2ccef4db0d88a5de6b36a92f)) ([e68f6c17](https://github.com/DuneSt/MaterialDesignLite/commit/e68f6c17fa04c6c38bb83b54593451c5c4b5f822)) * Create some predefined alerts in MDL extensions ([5c0f9005](https://github.com/DuneSt/MaterialDesignLite/commit/5c0f90056d0d72eebfd341f09f6d59b2e5f03360)) diff --git a/src/Material-Design-Lite-Demo/MDLDemo.class.st b/src/Material-Design-Lite-Demo/MDLDemo.class.st index f98ec4c6..2887ca31 100644 --- a/src/Material-Design-Lite-Demo/MDLDemo.class.st +++ b/src/Material-Design-Lite-Demo/MDLDemo.class.st @@ -88,7 +88,7 @@ MDLDemo class >> open [ { #category : #versions } MDLDemo class >> version [ - ^ 'v2.2.0' + ^ 'v2.2.1' ] { #category : #hooks }