Skip to content

Commit 703848d

Browse files
2.0.3 (#64)
* 2.0.3
1 parent 355a05d commit 703848d

File tree

6 files changed

+31
-6
lines changed

6 files changed

+31
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.0.3]
11+
12+
### Added
13+
14+
- Enable Swift support ([#62](https://github.com/MetaMask/action-security-code-scanner/pull/62))
15+
1016
### Changed
1117

1218
- Updated language detector to add Github Actions support by default
1319

20+
### Fixed
21+
22+
- Fix incorrect language selection based on repo config ([#63](https://github.com/MetaMask/action-security-code-scanner/pull/63))
23+
1424
## [2.0.1]
1525

1626
### Fixed
@@ -40,7 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4050

4151
- Initial release of this action ([#29](https://github.com/MetaMask/action-security-code-scanner/pull/29))
4252

43-
[Unreleased]: https://github.com/metamask/action-security-code-scanner/compare/v2.0.1...HEAD
53+
[Unreleased]: https://github.com/metamask/action-security-code-scanner/compare/v2.0.3...HEAD
54+
[2.0.3]: https://github.com/metamask/action-security-code-scanner/compare/v2.0.1...v2.0.3
4455
[2.0.1]: https://github.com/metamask/action-security-code-scanner/compare/v2.0.0...v2.0.1
4556
[2.0.0]: https://github.com/metamask/action-security-code-scanner/compare/v1.1.0...v2.0.0
4657
[1.1.0]: https://github.com/metamask/action-security-code-scanner/compare/v1.0.0...v1.1.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/action-security-code-scanner",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"private": true,
55
"description": "Security Code Scanner",
66
"repository": {

packages/codeql-action/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.0.3]
11+
12+
### Fixed
13+
14+
- Fix incorrect language selection based on repo config ([#63](https://github.com/MetaMask/action-security-code-scanner/pull/63))
15+
1016
### Fixed
1117

1218
- Fixed Codeql configuration build
@@ -26,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2632
- Added multi language support
2733
- Updated CodeQL action to v4
2834

29-
[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.1...HEAD
35+
[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.3...HEAD
36+
[2.0.3]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.1...v2.0.3
3037
[2.0.1]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.0...v2.0.1
3138
[2.0.0]: https://github.com/MetaMask/action-security-code-scanner/releases/tag/v2.0.0

packages/codeql-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/codeql-action",
3-
"version": "2.0.1",
3+
"version": "2.0.3",
44
"private": true,
55
"description": "Custom CodeQL analysis action",
66
"keywords": [],

packages/language-detector/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.0.3]
11+
12+
### Added
13+
14+
- Enable Swift support ([#62](https://github.com/MetaMask/action-security-code-scanner/pull/62))
15+
1016
## [2.0.2]
1117

1218
### Uncategorized
@@ -30,7 +36,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3036

3137
- Added support for autodetecting languages using Github API
3238

33-
[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.2...HEAD
39+
[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.3...HEAD
40+
[2.0.3]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.2...v2.0.3
3441
[2.0.2]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.1...v2.0.2
3542
[2.0.1]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.0...v2.0.1
3643
[2.0.0]: https://github.com/MetaMask/action-security-code-scanner/releases/tag/v2.0.0

packages/language-detector/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/language-detector",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "Language detection and matrix generation for code scanning",
55
"type": "module",
66
"main": "src/index.js",

0 commit comments

Comments
 (0)