diff --git a/CHANGELOG.md b/CHANGELOG.md index 65b028f..734ec7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [1.6.38](https://github.com/rokucommunity/brighterscript-formatter/compare/v1.6.37...v1.6.38) - 2024-01-16 +### Changed + - upgrade to [brighterscript@0.65.17](https://github.com/rokucommunity/brighterscript/blob/master/CHANGELOG.md#06517---2024-01-16). Notable changes since 0.65.16: + - adds support for libpkg prefix ([brighterscript#1017](https://github.com/rokucommunity/brighterscript/pull/1017)) + - Assign .program to the builder BEFORE calling afterProgram ([brighterscript#1011](https://github.com/rokucommunity/brighterscript/pull/1011)) + + + ## [1.6.37](https://github.com/rokucommunity/brighterscript-formatter/compare/v1.6.36...v1.6.37) - 2024-01-08 ### Changed - upgrade to [brighterscript@0.65.16](https://github.com/rokucommunity/brighterscript/blob/master/CHANGELOG.md#06516---2024-01-08). Notable changes since 0.65.12: diff --git a/package-lock.json b/package-lock.json index 9344e54..fb6fe53 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,15 +1,15 @@ { "name": "brighterscript-formatter", - "version": "1.6.37", + "version": "1.6.38", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "brighterscript-formatter", - "version": "1.6.37", + "version": "1.6.38", "license": "MIT", "dependencies": { - "brighterscript": "^0.65.16", + "brighterscript": "^0.65.17", "glob-all": "^3.3.0", "jsonc-parser": "^3.0.0", "source-map": "^0.7.3", @@ -1164,9 +1164,9 @@ } }, "node_modules/brighterscript": { - "version": "0.65.16", - "resolved": "https://registry.npmjs.org/brighterscript/-/brighterscript-0.65.16.tgz", - "integrity": "sha512-2RJMF8itkrPXtZ92JkJf3emvzcCl5ETXGVyPsdO/hMKbUGinEGMRFG07FR0bzjRotbALzsozGE/Hjzw412Sjww==", + "version": "0.65.17", + "resolved": "https://registry.npmjs.org/brighterscript/-/brighterscript-0.65.17.tgz", + "integrity": "sha512-c86jJYXwInV5ETnuE13VgyT8i+cTimabUPknImF51LQ1/gUDdrPL8d7NKcx+K8QBZLCW1ozkj/k6qttfEQnZRw==", "dependencies": { "@rokucommunity/bslib": "^0.1.1", "@xml-tools/parser": "^1.0.7", @@ -6240,9 +6240,9 @@ } }, "brighterscript": { - "version": "0.65.16", - "resolved": "https://registry.npmjs.org/brighterscript/-/brighterscript-0.65.16.tgz", - "integrity": "sha512-2RJMF8itkrPXtZ92JkJf3emvzcCl5ETXGVyPsdO/hMKbUGinEGMRFG07FR0bzjRotbALzsozGE/Hjzw412Sjww==", + "version": "0.65.17", + "resolved": "https://registry.npmjs.org/brighterscript/-/brighterscript-0.65.17.tgz", + "integrity": "sha512-c86jJYXwInV5ETnuE13VgyT8i+cTimabUPknImF51LQ1/gUDdrPL8d7NKcx+K8QBZLCW1ozkj/k6qttfEQnZRw==", "requires": { "@rokucommunity/bslib": "^0.1.1", "@xml-tools/parser": "^1.0.7", diff --git a/package.json b/package.json index d273977..76789d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "brighterscript-formatter", - "version": "1.6.37", + "version": "1.6.38", "description": "A formatter for BrighterScript, a superset of Roku's BrightScript language, written in JavaScript", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -22,7 +22,7 @@ "brighterscript-formatter": "dist/cli.js" }, "dependencies": { - "brighterscript": "^0.65.16", + "brighterscript": "^0.65.17", "glob-all": "^3.3.0", "jsonc-parser": "^3.0.0", "source-map": "^0.7.3",