Skip to content

Commit

Permalink
Merge pull request #247 from DuneSt/development
Browse files Browse the repository at this point in the history
v2.1.3
  • Loading branch information
jecisc committed Mar 9, 2019
2 parents dbaad42 + 108821e commit be9692d
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<!--git log --pretty="* %s ([%h](https://github.com/DuneSt/MaterialDesignLite/commit/%H)) v1.3.2...HEAD --grep="Merge "-->
# [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)

Expand Down
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.? .

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion src/Material-Design-Lite-Demo/MDLDemo.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ MDLDemo class >> open [

{ #category : #versions }
MDLDemo class >> version [
^ 'v2.1.2'
^ 'v2.1.3'
]

{ #category : #hooks }
Expand Down

0 comments on commit be9692d

Please sign in to comment.