Skip to content

Commit

Permalink
chore(idempotency): mark the utility ready public beta (#1595)
Browse files Browse the repository at this point in the history
* chore(idempotency): mark utility as public beta

* chore: manually increment version in commons
  • Loading branch information
dreamorosi committed Jul 11, 2023
1 parent e34d1d9 commit 0fc4f1e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/release_patch_package_json.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ if (process.argv.length < 3) {
}
const basePath = resolve(process.argv[2]);
const packageJsonPath = join(basePath, 'package.json');
const alphaPackages = ['@aws-lambda-powertools/idempotency'];
const betaPackages = [];
const alphaPackages = [];
const betaPackages = ['@aws-lambda-powertools/idempotency'];

(() => {
try {
Expand Down
2 changes: 1 addition & 1 deletion packages/commons/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// this file is auto generated, do not modify
export const PT_VERSION = '1.11.0';
export const PT_VERSION = '1.11.1';
6 changes: 4 additions & 2 deletions packages/idempotency/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"private": true,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "npm run test:unit",
"test:unit": "jest --group=unit --detectOpenHandles --coverage --verbose",
Expand Down Expand Up @@ -97,4 +99,4 @@
"aws-sdk-client-mock": "^2.2.0",
"aws-sdk-client-mock-jest": "^2.2.0"
}
}
}

0 comments on commit 0fc4f1e

Please sign in to comment.