File tree Expand file tree Collapse file tree 2 files changed +15
-6
lines changed
Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 1111
1212 push :
1313 branches :
14- - development
14+ - master
1515 - pharo9-openssl1.1
1616 - pharo10-openssl1.1
1717
2020 runs-on : ubuntu-latest
2121 strategy :
2222 matrix :
23- smalltalk : [ Pharo64-11, Pharo64-10, Pharo64-9.0 ]
23+ smalltalk : [ Pharo64-12, Pharo64- 11, Pharo64-10, Pharo64-9.0 ]
2424 name : ${{ matrix.smalltalk }}
2525 steps :
2626 - uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -8,21 +8,30 @@ Implementation of a JSON web token following [RFC 7519](https://tools.ietf.org/h
88
99## Installation
1010
11- For pharo9 and above use
11+ For pharo11 and above use
1212
1313``` Smalltalk
1414Metacello new
1515 baseline:'JSONWebToken';
16- repository: 'github://noha/JSONWebToken:pharo9-openssl1.1 /source';
16+ repository: 'github://noha/JSONWebToken:master /source';
1717 load
1818```
1919
20- For pharo8 and below use
20+ For pharo10 and above use
2121
2222``` Smalltalk
2323Metacello new
2424 baseline:'JSONWebToken';
25- repository: 'github://noha/JSONWebToken:master/source';
25+ repository: 'github://noha/JSONWebToken:pharo10-openssl1.1/source';
26+ load
27+ ```
28+
29+ For pharo9 and above use
30+
31+ ``` Smalltalk
32+ Metacello new
33+ baseline:'JSONWebToken';
34+ repository: 'github://noha/JSONWebToken:pharo9-openssl1.1/source';
2635 load
2736```
2837
You can’t perform that action at this time.
0 commit comments