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/README.md b/README.md index 689260e7..1a679126 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,26 @@ To add MaterialDesignLite Seaside to your baseline just add this: baseline: 'MaterialDesignLite' with: [ spec repository: 'github://DuneSt/MaterialDesignLite:v2.x.x/src' ] ``` +### 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'; + 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.x.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.? . 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 } 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 }