Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

push:
branches:
- development
- master
- pharo9-openssl1.1
- pharo10-openssl1.1

Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
smalltalk: [ Pharo64-11, Pharo64-10, Pharo64-9.0 ]
smalltalk: [ Pharo64-12, Pharo64-11, Pharo64-10, Pharo64-9.0 ]
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v2
Expand Down
17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,30 @@ Implementation of a JSON web token following [RFC 7519](https://tools.ietf.org/h

## Installation

For pharo9 and above use
For pharo11 and above use

```Smalltalk
Metacello new
baseline:'JSONWebToken';
repository: 'github://noha/JSONWebToken:pharo9-openssl1.1/source';
repository: 'github://noha/JSONWebToken:master/source';
load
```

For pharo8 and below use
For pharo10 and above use

```Smalltalk
Metacello new
baseline:'JSONWebToken';
repository: 'github://noha/JSONWebToken:master/source';
repository: 'github://noha/JSONWebToken:pharo10-openssl1.1/source';
load
```

For pharo9 and above use

```Smalltalk
Metacello new
baseline:'JSONWebToken';
repository: 'github://noha/JSONWebToken:pharo9-openssl1.1/source';
load
```

Expand Down