diff --git a/CHANGELOG.md b/CHANGELOG.md index 96a07e2..958a717 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,20 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.4] + +### Changed + +- Updated language detector to remove Javascript as fallback default language + ## [2.0.3] ### Added - Enable Swift support ([#62](https://github.com/MetaMask/action-security-code-scanner/pull/62)) -### Changed - -- Updated language detector to add Github Actions support by default - ### Fixed - Fix incorrect language selection based on repo config ([#63](https://github.com/MetaMask/action-security-code-scanner/pull/63)) +## [2.0.2] + +### Changed + +- Updated language detector to add Github Actions support by default + ## [2.0.1] ### Fixed @@ -50,9 +58,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release of this action ([#29](https://github.com/MetaMask/action-security-code-scanner/pull/29)) -[Unreleased]: https://github.com/metamask/action-security-code-scanner/compare/v2.0.3...HEAD -[2.0.3]: https://github.com/metamask/action-security-code-scanner/compare/v2.0.1...v2.0.3 -[2.0.1]: https://github.com/metamask/action-security-code-scanner/compare/v2.0.0...v2.0.1 -[2.0.0]: https://github.com/metamask/action-security-code-scanner/compare/v1.1.0...v2.0.0 -[1.1.0]: https://github.com/metamask/action-security-code-scanner/compare/v1.0.0...v1.1.0 -[1.0.0]: https://github.com/metamask/action-security-code-scanner/releases/tag/v1.0.0 +[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.4...HEAD +[2.0.4]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.3...v2.0.4 +[2.0.3]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.2...v2.0.3 +[2.0.2]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.1...v2.0.2 +[2.0.1]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.0...v2.0.1 +[2.0.0]: https://github.com/MetaMask/action-security-code-scanner/compare/v1.1.0...v2.0.0 +[1.1.0]: https://github.com/MetaMask/action-security-code-scanner/compare/v1.0.0...v1.1.0 +[1.0.0]: https://github.com/MetaMask/action-security-code-scanner/releases/tag/v1.0.0 diff --git a/package.json b/package.json index f6ad99c..8577013 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "@metamask/action-security-code-scanner", - "version": "2.0.3", + "version": "2.0.4", "private": true, "description": "Security Code Scanner", "repository": { "type": "git", - "url": "https://github.com/metamask/action-security-code-scanner.git" + "url": "https://github.com/MetaMask/action-security-code-scanner.git" }, "license": "ISC", "author": "metamask", diff --git a/packages/language-detector/CHANGELOG.md b/packages/language-detector/CHANGELOG.md index f101d91..26b6e18 100644 --- a/packages/language-detector/CHANGELOG.md +++ b/packages/language-detector/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.4] + ### Changed - Updated language detector to remove Javascript as fallback default language @@ -40,7 +42,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added support for autodetecting languages using Github API -[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.3...HEAD +[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.4...HEAD +[2.0.4]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.3...v2.0.4 [2.0.3]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.2...v2.0.3 [2.0.2]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.1...v2.0.2 [2.0.1]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.0...v2.0.1 diff --git a/packages/language-detector/package.json b/packages/language-detector/package.json index 07111c0..3c96fb5 100644 --- a/packages/language-detector/package.json +++ b/packages/language-detector/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/language-detector", - "version": "2.0.3", + "version": "2.0.4", "description": "Language detection and matrix generation for code scanning", "type": "module", "main": "src/index.js",