Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
node-version: [10.x, 12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# crypto-ld ChangeLog

## 3.9.0 - 2020-09-30

### Changed
- Use node-forge@0.10.0.

## 3.8.0 - 2020-06-23

### Added
- Setup CI and coverage workflow.
- Add node 14 to CI.
- Use sodium-native@3.2.0.

## 3.7.0 - 2019-09-06

### Added
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crypto-ld",
"version": "3.7.1-0",
"version": "3.9.1-0",
"description": "A library for managing cryptographic keys using Linked Data.",
"homepage": "https://github.com/digitalbazaar/crypto-ld",
"author": {
Expand All @@ -24,11 +24,11 @@
"dependencies": {
"base64url-universal": "^1.0.1",
"bs58": "^4.0.1",
"node-forge": "~0.9.0",
"node-forge": "~0.10.0",
"semver": "^6.2.0"
},
"optionalDependencies": {
"sodium-native": "^2.3.0"
"sodium-native": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
Expand All @@ -42,7 +42,7 @@
"chai": "^4.1.2",
"core-js": "^2.6.3",
"cross-env": "^5.1.3",
"eslint": "^6.8.0",
"eslint": "^7.10.0",
"eslint-config-digitalbazaar": "^2.0.0",
"jsdoc-to-markdown": "^4.0.1",
"karma": "^4.0.1",
Expand Down