From 76a6a2fdb3038bf0168b1530aa8e00ac93023c97 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 29 Jan 2024 21:16:10 +0100 Subject: [PATCH] fix(core): update --- readme.md | 2 +- ts/00_commitinfo_data.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 439e636..91601de 100644 --- a/readme.md +++ b/readme.md @@ -28,7 +28,7 @@ A modern approach to talking to the hetzner API. ```typescript import hetznerCloud from '@apiclient.xyz/hetznercloud' const myhetznerAccount = new hetznerCloud.HetznerAccount('myToken'); -const servers = const myhetznerAccount.getServers(); +const servers = myhetznerAccount.getServers(); for (const server of servers) { await server.delete(); } diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 253464d..fec46ab 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@apiclient.xyz/hetznercloud', - version: '1.0.4', + version: '1.0.5', description: 'an unofficial api client for the hetzner cloud api' }