From 7eb0cd593efa7d406e5ae0d0fe8b608c7821c4ec Mon Sep 17 00:00:00 2001 From: Trevor Bonas <45324987+trevorbonas@users.noreply.github.com> Date: Thu, 22 Aug 2024 14:32:11 -0700 Subject: [PATCH] Update changelog and version for v1.2.0 (#77) * Update version to 1.2.0 * Update CHANGELOG for v1.2.0 --- CHANGELOG.md | 11 +++++++++++ serverless/template.yml | 4 ++-- timestream/version.go | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4354bf5..0271576 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ 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.2.0](https://github.com/awslabs/amazon-timestream-connector-prometheus/releases/tag/1.2.0) - 2024-08-22 +### Dependencies +- [Update docker to 25.0.6 & remove binary](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/74) + +### Added +- [Add write buffering](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/76) + +### Changed +- [Update S3 Build Artifacts Directory](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/71) +- [Change designer links to composer links](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/70) + ## [v1.1.0](https://github.com/awslabs/amazon-timestream-connector-prometheus/releases/tag/1.1.0) - 2024-05-23 ### Fixed - [Make deployment user permissions more specific](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/68) diff --git a/serverless/template.yml b/serverless/template.yml index 536bc0b..3ac2570 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.1.0" + SemanticVersion: "1.2.0" Parameters: APIGatewayStageName: @@ -89,7 +89,7 @@ Resources: Role: !GetAtt "IAMLambdaRole.Arn" CodeUri: Bucket: !Sub 'timestreamassets-${AWS::Region}' - Key: "timestream-prometheus-connector/timestream-prometheus-connector-linux-amd64-1.1.0.zip" + Key: "timestream-prometheus-connector/timestream-prometheus-connector-linux-amd64-1.2.0.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 7639a76..5f09e53 100644 --- a/timestream/version.go +++ b/timestream/version.go @@ -19,6 +19,6 @@ import ( // Application build information. var ( - Version = "1.1.0" + Version = "1.2.0" GoVersion = runtime.Version() )