Skip to content

Commit 78b6c8d

Browse files
committed
chore: correct release version to 0.9.5
1 parent dd7afe3 commit 78b6c8d

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on Keep a Changelog.
66

77
## [Unreleased]
88

9-
## [0.10.0] - 2026-03-12
9+
## [0.9.5] - 2026-03-12
1010

1111
### Removed
1212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The project is intentionally conservative about claims. Anything called `impleme
3636

3737
> The goal is simple: be the SDK you reach for first if you want serious CSFloat automation instead of a thin wrapper.
3838
>
39-
> Install from npm: [`csfloat-node-sdk@0.10.0`](https://www.npmjs.com/package/csfloat-node-sdk)
39+
> Install from npm: [`csfloat-node-sdk@0.9.5`](https://www.npmjs.com/package/csfloat-node-sdk)
4040
4141
## Documentation
4242

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csfloat-node-sdk",
3-
"version": "0.10.0",
3+
"version": "0.9.5",
44
"description": "Live-validated Node.js / TypeScript SDK for the CSFloat API and public companion surfaces.",
55
"homepage": "https://github.com/Krablante/csfloat-node-sdk",
66
"repository": {

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { CsfloatSdkError, type CsfloatErrorKind } from "./errors.js";
22
import type { QueryParams } from "./types.js";
33
import { cleanParams } from "./utils.js";
44

5-
const DEFAULT_USER_AGENT = "csfloat-node-sdk/0.10.0";
5+
const DEFAULT_USER_AGENT = "csfloat-node-sdk/0.9.5";
66
const DEFAULT_MAX_RETRIES = 2;
77
const DEFAULT_RETRY_DELAY_MS = 250;
88
const DEFAULT_MAX_RETRY_DELAY_MS = 2_000;

test/client.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe("CsfloatHttpClient", () => {
2828
method: "GET",
2929
headers: expect.objectContaining({
3030
Authorization: "secret",
31-
"User-Agent": "csfloat-node-sdk/0.10.0",
31+
"User-Agent": "csfloat-node-sdk/0.9.5",
3232
}),
3333
});
3434
});

website/content/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on Keep a Changelog.
66

77
## [Unreleased]
88

9-
## [0.10.0] - 2026-03-12
9+
## [0.9.5] - 2026-03-12
1010

1111
### Removed
1212

website/content/package-readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The project is intentionally conservative about claims. Anything called `impleme
3636

3737
> The goal is simple: be the SDK you reach for first if you want serious CSFloat automation instead of a thin wrapper.
3838
>
39-
> Install from npm: [`csfloat-node-sdk@0.10.0`](https://www.npmjs.com/package/csfloat-node-sdk)
39+
> Install from npm: [`csfloat-node-sdk@0.9.5`](https://www.npmjs.com/package/csfloat-node-sdk)
4040
4141
## Documentation
4242

0 commit comments

Comments
 (0)