Skip to content

Commit 669272f

Browse files
committed
2.2.1
1 parent a1a35a9 commit 669272f

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Jira.js changelog
22

3+
### 2.2.1
4+
5+
- Types error fixed [#124](https://github.com/MrRefactoring/jira.js/issues/124)
6+
37
### 2.2.0
48

59
- Fixed [bug](https://github.com/MrRefactoring/jira.js/issues/120) with transition model

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jira.js",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "jira.js is a powerful Node.JS/Browser module that allows you to interact with the Jira API very easily",
55
"main": "out/index.js",
66
"types": "out/index.d.ts",

src/clients/baseClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ export class BaseClient implements Client {
8484
bodyExists: !!requestConfig.data,
8585
callbackUsed: !!callback,
8686
headersExists: !!requestConfig.headers,
87-
libVersion: '2.2.0',
88-
libVersionHash: 'bee32c0156f79d660cceded78d6c6384',
87+
libVersion: '2.2.1',
88+
libVersionHash: '00bfc8c729f5d4d529a412b12c58ddd2',
8989
methodName: telemetryData?.methodName || 'sendRequest',
9090
onErrorMiddlewareUsed: !!this.config.middlewares?.onError,
9191
onResponseMiddlewareUsed: !!this.config.middlewares?.onResponse,

0 commit comments

Comments
 (0)