Skip to content

Commit 58632d1

Browse files
committed
Update version to 1.0.4 and adjust related tests and .npmignore entries
1 parent e95bb9d commit 58632d1

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

.npmignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@
66
/tests
77
/coverage
88
/tsconfig.json
9-
9+
/.github
1010
.editorconfig
1111
.env
1212
.gitattributes
1313
jsdoc.json
14+
.vscode
15+
.DS_Store
16+
yarn-debug.log*
17+
yarn-error.log*
18+
/examples

lib/TombaClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class TombaClient {
1313
constructor() {
1414
this.endpoint = "https://api.tomba.io/v1";
1515
this.headers = {
16-
"x-sdk-version": "tomba:nodejs:v1.0.3",
16+
"x-sdk-version": "tomba:nodejs:v1.0.4",
1717
};
1818
}
1919

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "tomba",
33
"homepage": "https://tomba.io",
44
"description": "Tomba.io is an Email Finder for B2B sales and email marketing",
5-
"version": "v1.0.3",
5+
"version": "v1.0.4",
66
"license": "Apache-2.0",
77
"main": "./dist/index.js",
88
"types": "./dist/index.d.ts",

tests/client.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ describe("Client", () => {
55
it("should instantiate with default values", () => {
66
const client = new TombaClient();
77
expect(client.endpoint).toBe("https://api.tomba.io/v1");
8-
expect(client.headers["x-sdk-version"]).toBe("tomba:nodejs:v1.0.3");
8+
expect(client.headers["x-sdk-version"]).toBe("tomba:nodejs:v1.0.4");
99
});
1010
});

0 commit comments

Comments
 (0)