Skip to content

Commit e700595

Browse files
authored
0.5.2
1 parent d54366b commit e700595

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Skia Canvas
22

33
[![Tags](https://img.shields.io/github/release/DjDeveloperr/skia_canvas)](https://github.com/DjDeveloperr/skia_canvas/releases)
4-
[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].1/mod.ts)
4+
[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].2/mod.ts)
55
[![Checks](https://github.com/DjDeveloperr/skia_canvas/actions/workflows/ci.yml/badge.svg)](https://github.com/DjDeveloperr/skia_canvas/actions/workflows/ci.yml)
66
[![License](https://img.shields.io/github/license/DjDeveloperr/skia_canvas)](https://github.com/DjDeveloperr/skia_canvas/blob/master/LICENSE)
77
[![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.
1111
## Example
1212

1313
```ts
14-
import { createCanvas } from "https://deno.land/x/[email protected].1/mod.ts";
14+
import { createCanvas } from "https://deno.land/x/[email protected].2/mod.ts";
1515

1616
const canvas = createCanvas(300, 300);
1717
const ctx = canvas.getContext("2d");
@@ -51,7 +51,7 @@ deno run -A --unstable <file>
5151
## API
5252

5353
Check the
54-
[API reference here](https://doc.deno.land/https/deno.land/x/[email protected].1/mod.ts).
54+
[API reference here](https://doc.deno.land/https/deno.land/x/[email protected].2/mod.ts).
5555

5656
Since this module implements the Canvas Web API, you can also refer to the
5757
[MDN docs](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D).

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "skia_canvas",
33
"github": "https://github.com/DjDeveloperr/skia_canvas",
4-
"verision": "0.5.1",
4+
"verision": "0.5.2",
55

66
"tasks": {
77
"build": "cd native/build && CC=clang CXX=clang++ cmake .. && cmake --build . --config Release",

0 commit comments

Comments
 (0)