Skip to content

Commit 657e3b6

Browse files
committed
chore: bump version to v1.0.21
Updated version in package.json, context7.json, src/VersionInfo.ts, and src/__tests__/VersionInfo.test.ts and added to Context7 previousVersions
1 parent ecfd3d1 commit 657e3b6

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

context7.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@
2828
"Ensure all SMS configurations (sender, receiver, message) are validated before sending"
2929
],
3030
"previousVersions": [
31+
{
32+
"tag": "v1.0.20",
33+
"title": "version 1.0.20"
34+
},
3135
{
3236
"tag": "v1.0.19",
3337
"title": "version 1.0.19"
@@ -43,10 +47,6 @@
4347
{
4448
"tag": "v1.0.16",
4549
"title": "version 1.0.16"
46-
},
47-
{
48-
"tag": "v1.0.15",
49-
"title": "version 1.0.15"
5050
}
5151
]
5252
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@muhammedaksam/ayyildiz-node",
3-
"version": "1.0.20",
3+
"version": "1.0.21",
44
"description": "Ayyıldız Mobile Node.js SDK",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/VersionInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export class VersionInfo {
22
private static readonly MAJOR = 1;
33
private static readonly MINOR = 0;
4-
private static readonly PATCH = 20;
4+
private static readonly PATCH = 21;
55

66
/**
77
* Get version string in semver format

src/__tests__/VersionInfo.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('VersionInfo', () => {
1515

1616
it('should return current version', () => {
1717
const versionString = VersionInfo.string();
18-
expect(versionString).toBe('1.0.20');
18+
expect(versionString).toBe('1.0.21');
1919
});
2020
});
2121

@@ -38,7 +38,7 @@ describe('VersionInfo', () => {
3838
expect(versionObj).toEqual({
3939
major: 1,
4040
minor: 0,
41-
patch: 20
41+
patch: 21
4242
});
4343
});
4444

0 commit comments

Comments
 (0)