From 5dda0f26894ba95200d89dbfa6595f251ad9560c Mon Sep 17 00:00:00 2001 From: Paul DeBruicker Date: Wed, 13 Feb 2019 13:27:14 -0800 Subject: [PATCH 1/6] add GemStone load instructions --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 689260e7..db8aae1e 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ When a release contains only bug fixes, the patch number increase. When the rele Thus, it should be safe to depend on a fixed major version and moving minor version of this project. ## Install MDL Seaside - +### In Pharo To install MaterialDesignLite on your Pharo image you can just execute the following script: [Spotter Cloud Workspace Url](http://ws.stfx.eu/1JIZRQS7OI00). See ``ZnWorkspace`` section for installing a ZnWorkspace if you so want. ```Smalltalk @@ -61,6 +61,24 @@ To add MaterialDesignLite Seaside to your baseline just add this: baseline: 'MaterialDesignLite' with: [ spec repository: 'github://DuneSt/MaterialDesignLite:v2.x.x/src' ] ``` +### In GemStone + +```Smalltalk + Metacello new + githubUser: 'DuneSt' project: 'MaterialDesignLite' commitish: 'v1.3.x' path: 'src'; + baseline: 'MaterialDesignLite'; + onWarningLog; + load +``` + +To add MaterialDesignLite Seaside to your baseline just add this: + +```Smalltalk + spec + baseline: 'MaterialDesignLite' + with: [ spec repository: 'github://DuneSt/MaterialDesignLite:v1.3.x/src' ] +``` + Note that you can replace the #master by another branch as #development or a tag as #v1.0.0, #v1.? or #v1.2.? . From 28843e7eee130d632382d0d0fe26b8040ea2225a Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Wed, 13 Feb 2019 15:40:48 -0800 Subject: [PATCH 2/6] Update README.md Co-Authored-By: pdebruic --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db8aae1e..9325a368 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ To add MaterialDesignLite Seaside to your baseline just add this: ```Smalltalk Metacello new - githubUser: 'DuneSt' project: 'MaterialDesignLite' commitish: 'v1.3.x' path: 'src'; + githubUser: 'DuneSt' project: 'MaterialDesignLite' commitish: 'v1.x.x' path: 'src'; baseline: 'MaterialDesignLite'; onWarningLog; load From 41ae746e98ca143039fadbf982093421879672a5 Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Wed, 13 Feb 2019 15:40:57 -0800 Subject: [PATCH 3/6] Update README.md Co-Authored-By: pdebruic --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9325a368..88d1c715 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ To add MaterialDesignLite Seaside to your baseline just add this: ```Smalltalk spec baseline: 'MaterialDesignLite' - with: [ spec repository: 'github://DuneSt/MaterialDesignLite:v1.3.x/src' ] + with: [ spec repository: 'github://DuneSt/MaterialDesignLite:v1.x.x/src' ] ``` From 6c96245220cdd62c8be403eea5af142e54145a8a Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Sat, 16 Feb 2019 01:00:49 +0100 Subject: [PATCH 4/6] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 88d1c715..1a679126 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,8 @@ To add MaterialDesignLite Seaside to your baseline just add this: ``` ### In GemStone +Gemstone is only supported on v1 of the project. This does not mean no fix or feature can be added to it. We can still release new patch and feature version if asked. + ```Smalltalk Metacello new githubUser: 'DuneSt' project: 'MaterialDesignLite' commitish: 'v1.x.x' path: 'src'; From 388a100cf1fdbbbf8ba82bacf7ed413bfd901784 Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Sat, 9 Mar 2019 18:52:00 +0100 Subject: [PATCH 5/6] Fix version of FileLibraryHelper. Fixes #245 --- .../BaselineOfMaterialDesignLite.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BaselineOfMaterialDesignLite/BaselineOfMaterialDesignLite.class.st b/src/BaselineOfMaterialDesignLite/BaselineOfMaterialDesignLite.class.st index da1cf04e..d97ee0b3 100644 --- a/src/BaselineOfMaterialDesignLite/BaselineOfMaterialDesignLite.class.st +++ b/src/BaselineOfMaterialDesignLite/BaselineOfMaterialDesignLite.class.st @@ -51,7 +51,7 @@ BaselineOfMaterialDesignLite >> fileLibraryHelper: spec [ spec baseline: 'FileLibraryHelper' - with: [ spec repository: 'github://jecisc/FileLibraryHelper/src' ] + with: [ spec repository: 'github://jecisc/FileLibraryHelper:v1.x.x/src' ] ] { #category : #dependencies } From 108821ebf31754816d5056b3145d0d7bb6462a8d Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Sat, 9 Mar 2019 18:58:29 +0100 Subject: [PATCH 6/6] v2.1.3 --- CHANGELOG.md | 4 ++++ src/Material-Design-Lite-Demo/MDLDemo.class.st | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ea1f903..88462069 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ +# [v2.1.3](https://github.com/DuneSt/MaterialDesignLite/compare/v2.1.2...v2.1.3) (2019-03-09) +## Infrastructure + +* Fix version of FileLibraryHelper to v1.x.x ([808cffb](https://github.com/DuneSt/MaterialDesignLite/commit/808cffbf5a03c7f0fe5bfe84213239afaa43b971)) # [v2.1.2](https://github.com/DuneSt/MaterialDesignLite/compare/v2.1.1...v2.1.2) (2019-02-28) diff --git a/src/Material-Design-Lite-Demo/MDLDemo.class.st b/src/Material-Design-Lite-Demo/MDLDemo.class.st index 772e8eec..4b47e6c3 100644 --- a/src/Material-Design-Lite-Demo/MDLDemo.class.st +++ b/src/Material-Design-Lite-Demo/MDLDemo.class.st @@ -81,7 +81,7 @@ MDLDemo class >> open [ { #category : #versions } MDLDemo class >> version [ - ^ 'v2.1.2' + ^ 'v2.1.3' ] { #category : #hooks }