Skip to content

Commit 3d40510

Browse files
committed
Bump version
1 parent d768a69 commit 3d40510

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/sandbox/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
* This file is auto-updated by .github/changeset-version.ts during releases
44
* DO NOT EDIT MANUALLY - Changes will be overwritten on the next version bump
55
*/
6-
export const SDK_VERSION = '0.4.4';
6+
export const SDK_VERSION = '0.4.5';

packages/sandbox/tests/utility-client.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const mockCommandsResponse = (commands: string[], overrides: Partial<CommandsRes
2626
...overrides
2727
});
2828

29-
const mockVersionResponse = (version: string = '0.4.4', overrides: Partial<VersionResponse> = {}): VersionResponse => ({
29+
const mockVersionResponse = (version: string = '0.4.5', overrides: Partial<VersionResponse> = {}): VersionResponse => ({
3030
success: true,
3131
version,
3232
timestamp: '2023-01-01T00:00:00Z',
@@ -260,13 +260,13 @@ describe('UtilityClient', () => {
260260
describe('version checking', () => {
261261
it('should get container version successfully', async () => {
262262
mockFetch.mockResolvedValue(new Response(
263-
JSON.stringify(mockVersionResponse('0.4.4')),
263+
JSON.stringify(mockVersionResponse('0.4.5')),
264264
{ status: 200 }
265265
));
266266

267267
const result = await client.getVersion();
268268

269-
expect(result).toBe('0.4.4');
269+
expect(result).toBe('0.4.5');
270270
});
271271

272272
it('should handle different version formats', async () => {

0 commit comments

Comments
 (0)