Skip to content

Commit 989e487

Browse files
committed
chore: bump version to 0.1.1
Made-with: Cursor
1 parent 7ec7a45 commit 989e487

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitrefill/cli",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Bitrefill - browse, buy, and manage gift cards, mobile top-ups, and eSIMs",
55
"type": "module",
66
"bin": {

src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ async function createMcpClient(
196196
};
197197

198198
if (!useOAuth) {
199-
const c = new Client({ name: 'bitrefill-cli', version: '0.1.0' });
199+
const c = new Client({ name: 'bitrefill-cli', version: '0.1.1' });
200200
c.onerror = suppressNoise;
201201
const t = new StreamableHTTPClientTransport(new URL(url));
202202
await c.connect(t);
@@ -206,7 +206,7 @@ async function createMcpClient(
206206
const authProvider = createOAuthProvider(url);
207207

208208
const tryConnect = async () => {
209-
const c = new Client({ name: 'bitrefill-cli', version: '0.1.0' });
209+
const c = new Client({ name: 'bitrefill-cli', version: '0.1.1' });
210210
c.onerror = suppressNoise;
211211
const t = new StreamableHTTPClientTransport(new URL(url), {
212212
authProvider,
@@ -224,7 +224,7 @@ async function createMcpClient(
224224
const code = await waitForCallback();
225225
console.log('Authorization code received.');
226226

227-
const c = new Client({ name: 'bitrefill-cli', version: '0.1.0' });
227+
const c = new Client({ name: 'bitrefill-cli', version: '0.1.1' });
228228
c.onerror = suppressNoise;
229229
const t = new StreamableHTTPClientTransport(new URL(url), {
230230
authProvider,
@@ -354,7 +354,7 @@ async function main(): Promise<void> {
354354
.description(
355355
'Bitrefill CLI - browse, buy, and manage gift cards, mobile top-ups, and eSIMs.\n\nTerms: https://www.bitrefill.com/terms\nPrivacy: https://www.bitrefill.com/privacy'
356356
)
357-
.version('0.1.0')
357+
.version('0.1.1')
358358
.option(
359359
'--api-key <key>',
360360
'Bitrefill API key (overrides BITREFILL_API_KEY env var)'

0 commit comments

Comments
 (0)