Skip to content

Commit 0fc4f1e

Browse files
authored
chore(idempotency): mark the utility ready public beta (#1595)
* chore(idempotency): mark utility as public beta * chore: manually increment version in commons
1 parent e34d1d9 commit 0fc4f1e

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Diff for: .github/scripts/release_patch_package_json.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ if (process.argv.length < 3) {
1717
}
1818
const basePath = resolve(process.argv[2]);
1919
const packageJsonPath = join(basePath, 'package.json');
20-
const alphaPackages = ['@aws-lambda-powertools/idempotency'];
21-
const betaPackages = [];
20+
const alphaPackages = [];
21+
const betaPackages = ['@aws-lambda-powertools/idempotency'];
2222

2323
(() => {
2424
try {

Diff for: packages/commons/src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// this file is auto generated, do not modify
2-
export const PT_VERSION = '1.11.0';
2+
export const PT_VERSION = '1.11.1';

Diff for: packages/idempotency/package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
"name": "Amazon Web Services",
77
"url": "https://aws.amazon.com"
88
},
9-
"private": true,
9+
"publishConfig": {
10+
"access": "public"
11+
},
1012
"scripts": {
1113
"test": "npm run test:unit",
1214
"test:unit": "jest --group=unit --detectOpenHandles --coverage --verbose",
@@ -97,4 +99,4 @@
9799
"aws-sdk-client-mock": "^2.2.0",
98100
"aws-sdk-client-mock-jest": "^2.2.0"
99101
}
100-
}
102+
}

0 commit comments

Comments
 (0)