From 95d38437aee3094d85c0e089c0f9280b642a5674 Mon Sep 17 00:00:00 2001 From: CI Build <> Date: Tue, 2 Jan 2024 09:56:22 +0000 Subject: [PATCH] Update RELEASE-NOTES.md, module.go and *.go files for new version 1.1.1 --- RELEASE-NOTES.md | 6 ++++++ module.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index bf17fce..7edb89a 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,5 +1,11 @@ # godynamo release notes +## 2024-01-02 - v1.1.1 + +### Fixed/Improvement + +- Fix: result returned from a SELECT can be paged if too big + ## 2023-12-31 - v1.1.0 ### Added/Refactoring diff --git a/module.go b/module.go index ebf4e25..2e947f6 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.1.0" + Version = "1.1.1" ) // This file contains module's metadata only, which is package level documentation and module Version string.