Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
0.2.60
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelrk committed Oct 31, 2023
1 parent 4a929dc commit 4bb7700
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions lib/apis/netzo/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ export const netzo = ({
labels: [],
readBy: [],
data,
env: Deno.env.get("NETZO_ENV")!,
projectId: Deno.env.get("NETZO_PROJECT_ID")!,
denoRegion: Deno.env.get("DENO_REGION")!,
denoDeploymentId: Deno.env.get("DENO_DEPLOYMENT_ID")!,
netzoEnv: Deno.env.get("NETZO_ENV")!,
netzoProjectId: Deno.env.get("NETZO_PROJECT_ID")!,
});
};

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// latest version of netzo/cli (see https://github.com/netzo/netzo/releases)
export const VERSION = "0.2.59";
export const VERSION = "0.2.60";

// minimum version of Deno required to run this CLI
// (see https://github.com/denoland/deployctl/blob/main/src/version.ts)
Expand Down
2 changes: 1 addition & 1 deletion lib/components/imports.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const baseImports = {
"@/": "./",
"netzo/": "https://deno.land/x/netzo@0.2.59/",
"netzo/": "https://deno.land/x/netzo@0.2.60/",
"$fresh/": "https://deno.land/x/fresh@1.5.2/",
"preact": "https://esm.sh/preact@10.18.1",
"preact/": "https://esm.sh/preact@10.18.1/",
Expand Down
2 changes: 1 addition & 1 deletion templates/app/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"imports": {
"@/": "./",
"netzo/": "https://deno.land/x/netzo@0.2.59/",
"netzo/": "https://deno.land/x/netzo@0.2.60/",
"$fresh/": "https://deno.land/x/fresh@1.5.2/",
"preact": "https://esm.sh/preact@10.18.1",
"preact/": "https://esm.sh/preact@10.18.1/",
Expand Down
2 changes: 1 addition & 1 deletion templates/workflow-starter/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"imports": {
"@/": "./",
"netzo/": "https://deno.land/x/netzo@0.2.59/",
"netzo/": "https://deno.land/x/netzo@0.2.60/",
"$fresh/": "https://deno.land/x/fresh@1.5.2/",
"preact": "https://esm.sh/preact@10.18.1",
"preact/": "https://esm.sh/preact@10.18.1/",
Expand Down
2 changes: 1 addition & 1 deletion www/src/docs/examples/starter.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ A `deno.jsonc` or `deno.json` file used to configure the Deno runtime for local
{
"imports": {
"@/": "./",
"netzo/": "https://deno.land/x/netzo@0.2.59/",
"netzo/": "https://deno.land/x/netzo@0.2.60/",
"preact": "https://esm.sh/preact@10.18.1",
"preact/": "https://esm.sh/preact@10.18.1/"
}
Expand Down
4 changes: 2 additions & 2 deletions www/src/docs/guides/interacting-with-apis.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The following basic examples show how to work with APIs.
An example of connecting to a custom API, in this case the JSONPlaceholder API.

```jsx
import { rest } from 'https://deno.land/x/netzo@0.2.59/apis/rest/mod.ts'
import { rest } from 'https://deno.land/x/netzo@0.2.60/apis/rest/mod.ts'

const api = rest({
baseURL: 'https://jsonplaceholder.typicode.com',
Expand All @@ -24,7 +24,7 @@ const data = await api.sales.get({ start: Date.now() })
An example of connecting to an existing API, in this case the JSONPlaceholder API.

```jsx
import { jsonplaceholder } from 'https://deno.land/x/netzo@0.2.59/apis/jsonplaceholder/mod.ts'
import { jsonplaceholder } from 'https://deno.land/x/netzo@0.2.60/apis/jsonplaceholder/mod.ts'

const { api } = jsonplaceholder()

Expand Down

0 comments on commit 4bb7700

Please sign in to comment.