Skip to content

Commit 465567c

Browse files
committed
fix should not default to true
1 parent eadbe2f commit 465567c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ Possible header types:
1111

1212
## [Unreleased]
1313

14+
## v1.2.1 (2023-02-03)
15+
16+
### Bug Fixes
17+
18+
- Fix: `Settings.SKIP_BUILD` should not default to `true`
19+
1420
## v1.2.0 (2023-02-03)
1521

1622
### Bug Fixes

lib/function.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export class RustFunction extends Function {
9696
if (Settings.SKIP_BUILD === undefined)
9797
Settings.SKIP_BUILD = !asBool(
9898
scope.node.tryGetContext('build'),
99-
'F'
99+
'T'
100100
);
101101

102102
// Build with `cargo-lambda`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rust.aws-cdk-lambda",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "A CDK (v2) Construct Library for AWS Lambda in Rust",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)