Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ShinobuTakahashi committed Oct 18, 2024
1 parent 8e4c009 commit 0a58923
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# ChangeLog

## 3.18.3
* `g.E#destroy()` で破棄済みチェックを行うように修正

## 3.18.2
* `OperationHandler#onOperaiton()``instanceof` での判定をやめ `Array.isArray()` を利用するように修正

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": "@akashic/akashic-engine",
"version": "3.18.2",
"version": "3.18.3",
"description": "The core library of Akashic Engine",
"main": "index.js",
"dependencies": {
Expand Down
1 change: 1 addition & 0 deletions src/__tests__/ESpec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ describe("test E", () => {
it("destroy - check for multiple executions", () => {
const e2 = new E({ scene: runtime.scene });
const spy = jest.spyOn(e2.scene, "unregister");

e2.destroy();
expect(e2.destroyed()).toBeTruthy();
expect(spy.mock.calls.length).toBe(1);
Expand Down

0 comments on commit 0a58923

Please sign in to comment.