From fe25d28e53cc36fbd33f36b99753f49d287e9586 Mon Sep 17 00:00:00 2001 From: Eoin Shanaghy Date: Tue, 18 Feb 2025 10:14:19 +0000 Subject: [PATCH 1/3] chore(main): release 0.0.8 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ template.yaml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 33322f4..5742c08 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.7" + ".": "0.0.8" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 986cc75..6cb0edf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.8](https://github.com/fourTheorem/duck-query-lambda/compare/v0.0.7...v0.0.8) (2025-02-18) + + +### Miscellaneous Chores + +* release 0.0.8 ([8e67e3d](https://github.com/fourTheorem/duck-query-lambda/commit/8e67e3d859a0e0e51634a38cfa7273f736d716cc)) + ## [0.0.7](https://github.com/fourTheorem/duck-query-lambda/compare/v0.0.6...v0.0.7) (2024-11-21) diff --git a/template.yaml b/template.yaml index d88253b..42375bf 100644 --- a/template.yaml +++ b/template.yaml @@ -10,7 +10,7 @@ Metadata: ReadmeUrl: README.md Labels: ['layer','lambda','runtime','duckdb'] HomePageUrl: https://github.com/fourTheorem/duck-query-lambda - SemanticVersion: 0.0.7 # x-release-please-version + SemanticVersion: 0.0.8 # x-release-please-version SourceCodeUrl: https://github.com/fourTheorem/duck-query-lambda Transform: AWS::Serverless-2016-10-31 From 6e0e558f4a9ecfa7b0b2917d257e2719202a4818 Mon Sep 17 00:00:00 2001 From: Eoin Shanaghy Date: Tue, 18 Feb 2025 10:15:46 +0000 Subject: [PATCH 2/3] chore: update release please config --- release-please-config.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/release-please-config.json b/release-please-config.json index 57d1432..134c0f7 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -11,6 +11,10 @@ { "type": "generic", "path": "template.yaml" + }, + { + "type": "generic", + "path": "README.md" } ] } From c17374ad357f17db78976154d4d8a5ba80ca058c Mon Sep 17 00:00:00 2001 From: Eoin Shanaghy Date: Tue, 18 Feb 2025 10:15:46 +0000 Subject: [PATCH 3/3] chore: update release please config --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 62f0203..cbebbce 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ The Lambda Layer for this DuckDB runtime is available in the AWS Serverless Appl Properties: Location: ApplicationId: arn:aws:serverlessrepo:eu-west-1:949339270388:applications/duck-query-lambda - SemanticVersion: 0.0.7 # x-release-please-version + SemanticVersion: 0.0.8 # x-release-please-version ``` - Install using the AWS CDK: @@ -42,7 +42,7 @@ import * as sam from "aws-cdk-lib/aws-sam"; new sam.CfnApplication(this, "DuckQueryRuntimeLayer", { location: { applicationId: "arn:aws:serverlessrepo:eu-west-1:949339270388:applications/duck-query-lambda", - semanticVersion: "0.0.7", // x-release-please-version + semanticVersion: "0.0.8", // x-release-please-version }, }); ```