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 11
11
12
12
push :
13
13
branches :
14
- - development
14
+ - master
15
15
- pharo9-openssl1.1
16
16
- pharo10-openssl1.1
17
17
20
20
runs-on : ubuntu-latest
21
21
strategy :
22
22
matrix :
23
- smalltalk : [ Pharo64-11, Pharo64-10, Pharo64-9.0 ]
23
+ smalltalk : [ Pharo64-12, Pharo64- 11, Pharo64-10, Pharo64-9.0 ]
24
24
name : ${{ matrix.smalltalk }}
25
25
steps :
26
26
- 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
8
8
9
9
## Installation
10
10
11
- For pharo9 and above use
11
+ For pharo11 and above use
12
12
13
13
``` Smalltalk
14
14
Metacello new
15
15
baseline:'JSONWebToken';
16
- repository: 'github://noha/JSONWebToken:pharo9-openssl1.1 /source';
16
+ repository: 'github://noha/JSONWebToken:master /source';
17
17
load
18
18
```
19
19
20
- For pharo8 and below use
20
+ For pharo10 and above use
21
21
22
22
``` Smalltalk
23
23
Metacello new
24
24
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';
26
35
load
27
36
```
28
37
You can’t perform that action at this time.
0 commit comments