From 389b9c721417ced9add4f7522ebdf5816589565f Mon Sep 17 00:00:00 2001 From: Forest Vey Date: Tue, 17 Dec 2024 13:28:38 -0800 Subject: [PATCH] Version and changelog updates for the v1.3.1 release. (#84) Signed-off-by: forestmvey --- CHANGELOG.md | 10 ++++++++++ serverless/template.yml | 4 ++-- timestream/version.go | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9293fce..69b0c3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v1.3.1](https://github.com/awslabs/amazon-timestream-connector-prometheus/releases/tag/1.3.1) - 2024-12-17 +### Dependencies +- [AWS SDK Go V2 Upgrade](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/83) + +### Added +- [Add ARM support](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/81) + +### Removed +- [Remove invalid deployment links](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/80) + ## [v1.3.0](https://github.com/awslabs/amazon-timestream-connector-prometheus/releases/tag/1.3.0) - 2024-11-20 ### Dependencies - [Upgrade grpc](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/79) diff --git a/serverless/template.yml b/serverless/template.yml index f8b1bb7..91be7f7 100644 --- a/serverless/template.yml +++ b/serverless/template.yml @@ -9,7 +9,7 @@ Metadata: LicenseUrl: "LICENSE" ReadmeUrl: "DEVELOPER_README.md" HomePageUrl: "https://aws.amazon.com/timestream/" - SemanticVersion: "1.3.0" + SemanticVersion: "1.3.1" Parameters: APIGatewayStageName: @@ -108,7 +108,7 @@ Resources: Role: !GetAtt IAMLambdaRole.Arn CodeUri: Bucket: !Sub 'timestreamassets-${AWS::Region}' - Key: "timestream-prometheus-connector/timestream-prometheus-connector-linux-arm64-1.3.0.zip" + Key: "timestream-prometheus-connector/timestream-prometheus-connector-linux-arm64-1.3.1.zip" Description: "Prometheus remote storage connector for Amazon Timestream" Handler: "bootstrap" MemorySize: !Ref MemorySize diff --git a/timestream/version.go b/timestream/version.go index e48b7e7..f1ea8da 100644 --- a/timestream/version.go +++ b/timestream/version.go @@ -19,6 +19,6 @@ import ( // Application build information. var ( - Version = "1.3.0" + Version = "1.3.1" GoVersion = runtime.Version() )