Skip to content

Commit e6fcb1a

Browse files
Merge pull request #131 from muhammedaksam/develop
Upgrade ESLint and version bump to 1.0.20
2 parents 6940ec2 + 147d9b1 commit e6fcb1a

5 files changed

Lines changed: 38 additions & 31 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.19",
33+
"title": "version 1.0.19"
34+
},
3135
{
3236
"tag": "v1.0.18",
3337
"title": "version 1.0.18"
@@ -43,10 +47,6 @@
4347
{
4448
"tag": "v1.0.15",
4549
"title": "version 1.0.15"
46-
},
47-
{
48-
"tag": "v1.0.14",
49-
"title": "version 1.0.14"
5050
}
5151
]
5252
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@muhammedaksam/ayyildiz-node",
3-
"version": "1.0.19",
3+
"version": "1.0.20",
44
"description": "Ayyıldız Mobile Node.js SDK",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -54,7 +54,7 @@
5454
"axios": "^1.15.2"
5555
},
5656
"devDependencies": {
57-
"@eslint/js": "^9.39.4",
57+
"@eslint/js": "^10.0.1",
5858
"@types/jest": "^30.0.0",
5959
"@types/node": "^25.6.0",
6060
"@typescript-eslint/eslint-plugin": "^8.59.0",

pnpm-lock.yaml

Lines changed: 29 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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 = 19;
4+
private static readonly PATCH = 20;
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.19');
18+
expect(versionString).toBe('1.0.20');
1919
});
2020
});
2121

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

0 commit comments

Comments
 (0)