From f055b3d049c118bcc0b1024061c903bea3ff5fa9 Mon Sep 17 00:00:00 2001 From: CI Build <> Date: Thu, 2 May 2024 04:35:01 +0000 Subject: [PATCH] Update RELEASE-NOTES.md, module.go and *.go files for new version 1.3.0 --- README.md | 2 +- RELEASE-NOTES.md | 6 ++++++ driver.go | 4 ++-- module.go | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 695b93b..adef8f4 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ Region= ## Using `aws.Config`: -Since <>, `godynamo` supports using `aws.Config` to create the connection to DynamoDB: +Since v1.3.0, `godynamo` supports using `aws.Config` to create the connection to DynamoDB: ```go package main diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 0dc762d..dccb380 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,5 +1,11 @@ # godynamo release notes +## 2024-05-02 - v1.3.0 + +### Added/Refactoring + +- New feature: sql.Open with aws.Config + ## 2024-03-21 - v1.2.1 ### Fixed/Improvement diff --git a/driver.go b/driver.go index 7509ab1..5afcc2e 100644 --- a/driver.go +++ b/driver.go @@ -116,7 +116,7 @@ var ( // The following configurations do not apply even if they are set in aws.Config. // - HTTPClient // -// @Available since <> +// @Available since v1.3.0 func RegisterAWSConfig(conf aws.Config) { awsConfigLock.Lock() defer awsConfigLock.Unlock() @@ -125,7 +125,7 @@ func RegisterAWSConfig(conf aws.Config) { // DeregisterAWSConfig removes the registered aws.Config. // -// @Available since <> +// @Available since v1.3.0 func DeregisterAWSConfig() { awsConfigLock.Lock() defer awsConfigLock.Unlock() diff --git a/module.go b/module.go index 6823386..8220636 100644 --- a/module.go +++ b/module.go @@ -3,7 +3,7 @@ package godynamo const ( // Version holds the semantic version number of this module. - Version = "1.2.1" + Version = "1.3.0" ) // This file contains module's metadata only, which is package level documentation and module Version string.