Skip to content

Commit 3e85640

Browse files
authored
Merge pull request #29 from upwork/v1.3.2
v1.3.2
2 parents 3cf6ba7 + 5980297 commit 3e85640

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release History
22

3+
## 1.3.2
4+
* Update lodash dependency to >=4.17.13 (secufity fix)
5+
* Fix GitHub issue #13
6+
37
## 1.3.1
48
* Update mocha to 6.1.4
59
* Update dependency to node-upwork

index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
require('pkginfo')(module, 'version');
1+
const packageJson = require('./package.json')
2+
const version = packageJson.version
3+
24
module.exports = require('./lib/api').UpworkApi;

package-lock.json

+4-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "upwork-api",
33
"description": "Node.JS bindings for Upwork API",
4-
"version": "1.3.1",
4+
"version": "1.3.2",
55
"author": {
66
"name": "Maksym Novozhylov",
77
"email": "mnovozhilov@upwork.com"
@@ -21,6 +21,7 @@
2121
"dependencies": {
2222
"oauth": "0.9.10",
2323
"node-upwork": "0.0.9",
24+
"lodash": ">=4.17.13",
2425
"pkginfo": "*"
2526
},
2627
"keywords": [

0 commit comments

Comments
 (0)