diff --git a/README.md b/README.md index 5c3e272..e92af22 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Skia Canvas [![Tags](https://img.shields.io/github/release/DjDeveloperr/skia_canvas)](https://github.com/DjDeveloperr/skia_canvas/releases) -[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/skia_canvas@0.5.1/mod.ts) +[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/skia_canvas@0.5.2/mod.ts) [![Checks](https://github.com/DjDeveloperr/skia_canvas/actions/workflows/ci.yml/badge.svg)](https://github.com/DjDeveloperr/skia_canvas/actions/workflows/ci.yml) [![License](https://img.shields.io/github/license/DjDeveloperr/skia_canvas)](https://github.com/DjDeveloperr/skia_canvas/blob/master/LICENSE) [![Sponsor](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86)](https://github.com/sponsors/DjDeveloperr) @@ -11,7 +11,7 @@ Fast HTML Canvas API implementation for Deno using Skia. ## Example ```ts -import { createCanvas } from "https://deno.land/x/skia_canvas@0.5.1/mod.ts"; +import { createCanvas } from "https://deno.land/x/skia_canvas@0.5.2/mod.ts"; const canvas = createCanvas(300, 300); const ctx = canvas.getContext("2d"); @@ -51,7 +51,7 @@ deno run -A --unstable ## API Check the -[API reference here](https://doc.deno.land/https/deno.land/x/skia_canvas@0.5.1/mod.ts). +[API reference here](https://doc.deno.land/https/deno.land/x/skia_canvas@0.5.2/mod.ts). Since this module implements the Canvas Web API, you can also refer to the [MDN docs](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D). diff --git a/deno.json b/deno.json index 4e25652..8b9dd96 100644 --- a/deno.json +++ b/deno.json @@ -1,7 +1,7 @@ { "name": "skia_canvas", "github": "https://github.com/DjDeveloperr/skia_canvas", - "verision": "0.5.1", + "verision": "0.5.2", "tasks": { "build": "cd native/build && CC=clang CXX=clang++ cmake .. && cmake --build . --config Release",