Skip to content

Commit

Permalink
Bump version (#46)
Browse files Browse the repository at this point in the history
* Call it IKampos

* 0.11.2

* Fixed version in changelog
  • Loading branch information
ydaniv authored Nov 17, 2024
1 parent a10aea6 commit 98547ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 0.11.0 (2024-11-17)
### 0.11.2 (2024-11-17)

_New:_

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kampos",
"version": "0.11.1",
"version": "0.11.2",
"description": "Tiny and fast effects compositor on WebGL",
"registry": "https://registry.npmjs.org/",
"main": "dist/index.cjs",
Expand Down
4 changes: 2 additions & 2 deletions types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ declare type Ticker = {
remove: (instance: Drawable) => void;
};

declare type Kampos = {
constructor: (config: KamposConfig) => Kampos;
declare type IKampos = {
constructor: (config: KamposConfig) => IKampos;
init: (config?: KamposConfig) => void;
draw: (time?: number) => void;
destroy: (keepState?: boolean) => void;
Expand Down

0 comments on commit 98547ba

Please sign in to comment.