Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
emilefokkema committed Apr 15, 2023
1 parent 97f26ad commit efa8f04
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var context = infiniteCanvas.getContext("2d");
Include `InfiniteCanvas` in your web page:

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].0-alpha/dist/infinite-canvas.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/infinite-canvas.js"></script>
```

or install it using npm:
Expand Down
4 changes: 2 additions & 2 deletions docs/dev/page/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import createDepTrees from './dep-trees.js'

console.log('hello from stackblitz page')

const infCanvasUrl = 'https://cdn.jsdelivr.net/npm/[email protected].0-alpha/dist/infinite-canvas.js';
const infCanvasUrl = 'https://cdn.jsdelivr.net/npm/[email protected].1/dist/infinite-canvas.js';

const stateType = {
initializing: 0,
Expand Down Expand Up @@ -394,7 +394,7 @@ class EmbeddedProject{
};
if(!watching){
projectConfig.dependencies = {
"ef-infinite-canvas": "^0.6.0-alpha"
"ef-infinite-canvas": "^0.6.1"
};
}
const openOptions = this.getOpenOptions(type, files);
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Simply include it in your html

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].0-alpha/dist/infinite-canvas.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/infinite-canvas.js"></script>
```

or install it using npm:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ef-infinite-canvas",
"version": "0.6.0-alpha",
"version": "0.6.1",
"description": "An infinite version of the html canvas",
"main": "dist/infinite-canvas.js",
"types": "dist/types/infinite-canvas.d.ts",
Expand Down

0 comments on commit efa8f04

Please sign in to comment.