diff --git a/deno.json b/deno.json index 192cae9..f356c92 100644 --- a/deno.json +++ b/deno.json @@ -1,7 +1,7 @@ { "name": "@murat/yelix", "exports": "./mod.ts", - "version": "0.1.44", + "version": "0.1.45", "license": "MIT", "nodeModulesDir": "auto", "tasks": { diff --git a/jsr.json b/jsr.json index 82f3112..d9c51e6 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@murat/yelix", - "version": "0.1.44", + "version": "0.1.45", "license": "MIT", "exports": { ".": "./mod.ts", diff --git a/src/OpenAPI/APIReferences/base.ts b/src/OpenAPI/APIReferences/base.ts index b84037d..4671f81 100644 --- a/src/OpenAPI/APIReferences/base.ts +++ b/src/OpenAPI/APIReferences/base.ts @@ -23,7 +23,7 @@ class APIReferenceBase { } serve(yelix: Yelix): void { - yelix.app.get(this.path, (ctx) => { + yelix.app.get(this.path, (ctx: Ctx) => { return this.getResponse(ctx); }); } diff --git a/version.ts b/version.ts index 45b4de1..833fe88 100644 --- a/version.ts +++ b/version.ts @@ -1,2 +1,2 @@ -const version = "0.1.44"; +const version = "0.1.45"; export default version;