Skip to content

Commit 8ae4d0a

Browse files
committed
docs(release): update CHANGELOG.md with 1.1.0
1 parent 8819510 commit 8ae4d0a

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## **1.1.0**&emsp;<sub><sup>2024-05-03 (e5df8e26837978750802d21ec4cbc2f04d45b800...88195107222c9e8b90e8c9a545f95fdcc36b73f9)</sup></sub>
2+
3+
### Bug Fixes
4+
5+
- typos in text and code chore: enable cedar extensions (7ee3b5ed46eec43909cab4af79fa18c7a1867cc0)
6+
- fixed cedarschema name change bug in cdk (1c23cb7ef0fef5bd432c081dd02035440f946efe)
7+
- fixed bug on newsletter generator expecting a provided hostname (449543a6497d63d9fdb454abe5075afefd68e560)
8+
- Improve In\-App View of Newsletter (66cc1ae67b677b4618a3339c362718d65d577726)
9+
10+
### Merges
11+
12+
- pull request \#2 from aws\-samples/dependabot (8229c14adeec3cc0223f3c18c6cf18f3eb6222f4)
13+
14+
15+
### BREAKING CHANGES
16+
- `auth` The refactor can potentially cause down time during deployment\. If the deployment (627230f2cd60502f69b5c219af4166ddf3320801)
17+
18+
fails, temporarily comment out the resolvers in CDK, deploy, then add the resolvers back and deploy
19+
again
20+
<br>
21+
122
## **1.0.0**&emsp;<sub><sup>2024-04-04 (2fa39380d025729852d5d2708675d8b1bf674a74...4313411db83166666926d23275bd6fa810c9699f)</sup></sub>
223

324
### Bug Fixes

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "commonjs",
33
"name": "genai-newsletter",
4-
"version": "1.0.0",
4+
"version": "1.1.0",
55
"bin": {
66
"genai-newsletter-app": "bin/genai-newsletter-app.js"
77
},

scripts/create-release.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/bin/sh
2-
VERSION=$(npx git-conventional-commits version)
2+
# Accept optional argument $1 which is a manual override
3+
if [ -z "$1" ]; then
4+
VERSION=$(npx git-conventional-commits version)
5+
else
6+
VERSION=$1
7+
fi
38
npm version ${VERSION} -m "build(release): bump project version to %s"
49
npx git-conventional-commits changelog --release ${VERSION} --file 'CHANGELOG.md'
510
git commit -am"docs(release): update CHANGELOG.md with ${VERSION}"

0 commit comments

Comments
 (0)