diff --git a/.npmignore b/.npmignore index 57a0e88..a1c95cc 100644 --- a/.npmignore +++ b/.npmignore @@ -2,10 +2,12 @@ /test /src /out/test +/images tsconfig.json .eslintignore .eslintrc.js .github +.vscode *.map .husky jest.* @@ -13,3 +15,4 @@ jest.* coverage winuaebootlog.txt *.vsix +wasm/build_cstool.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index 7780699..1d3e3bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.2] - 2024-02-02 + +## Fixed + +- Can't chain `process.on()` + ## [1.1.1] - 2024-02-02 ## Fixed diff --git a/package-lock.json b/package-lock.json index 7fa0f6c..46dcc9d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "uae-dap", - "version": "1.1.1", + "version": "1.1.2", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 60a89cb..8202838 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "uae-dap", - "version": "1.1.1", + "version": "1.1.2", "description": "Debug Adapter Protocol for Amiga development with FS-UAE or WinUAE", "main": "out/src/index.js", "displayName": "Amiga Assembly Debugger", @@ -322,8 +322,8 @@ "test-coverage": "jest --coverage", "prepare": "husky install", "vscode:prepublish": "npm run build", - "package": "vsce package", - "publish": "vsce publish" + "vscode:package": "vsce package", + "vscode:publish": "vsce publish" }, "dependencies": { "@vscode/debugadapter": "^1.55.1",