Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pdl committed Sep 12, 2020
1 parent 1954c89 commit 50ad4bd
Show file tree
Hide file tree
Showing 4 changed files with 213 additions and 23 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 0.3.0

Fixes

- Fixed an issue where global installs would fail depending on the version of saltthepass

Security

- Upgraded dependencies with reported vulnerabilities.

# 0.2.1

Security release
Expand Down
2 changes: 1 addition & 1 deletion index.js
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node
const version = process.env.npm_package_version;
const stp = require('saltthepass');
const stp = require('saltthepass/src/saltthepass');
const prompt = require('prompt');
const getopt = require('node-getopt-long');
const readline = require('readline');
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{
"name": "saltpass-cli",
"version": "0.2.2",
"version": "0.3.0",
"description": "Command-line utility for salting passwords",
"main": "index.js",
"bin": {
"saltpass": "./index.js"
},
"scripts": {
"lint": "git ls-files | grep '.js' | xargs yarn -s eslint --color",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"node-getopt-long": ">=0.3.2",
"node-getopt-long": ">=0.4.0",
"prompt": ">=1.0.0",
"saltthepass": ">=0.2.2"
"saltthepass": "0.3.0"
},
"keywords": [
"salt",
Expand Down
Loading

0 comments on commit 50ad4bd

Please sign in to comment.