Skip to content

Commit 72e9f6b

Browse files
committed
Upped release number to 1.3.0
1 parent 0d5cba1 commit 72e9f6b

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/).
55

6-
## [Unpublished]
6+
## 1.3.0 - 2022-02-24
77

88
### Added
99
- Added latest Oracle Cloud Infrastructure regions and region codes: LIN, MTZ, VCP, BRS, UKB, JNB, SIN, MRS, ARN, AUH, MCT, WGA.

nosqldb/request.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ func ProvisionedTableLimits(RUs uint, WUs uint, GB uint) *TableLimits {
619619

620620
// OnDemandTableLimits returns a TableLimits struct set up for
621621
// on demand (flexible read/write limits) tables.
622-
// Added in SDK Version 5.3.0
622+
// Added in SDK Version 1.3.0
623623
func OnDemandTableLimits(GB uint) *TableLimits {
624624
return &TableLimits{
625625
ReadUnits: 0,
@@ -707,7 +707,7 @@ type DeleteRequest struct {
707707
Timeout time.Duration `json:"timeout"`
708708

709709
// Durability is currently only used in On-Prem installations.
710-
// Added in SDK Version 5.3.0
710+
// Added in SDK Version 1.3.0
711711
Durability types.Durability `json:"durability"`
712712

713713
// isSubRequest specifies whether this is a sub request of a WriteMultiple
@@ -853,7 +853,7 @@ type PutRequest struct {
853853
Timeout time.Duration `json:"timeout"`
854854

855855
// Durability is currently only used in On-Prem installations.
856-
// Added in SDK Version 5.3.0
856+
// Added in SDK Version 1.3.0
857857
Durability types.Durability `json:"durability"`
858858

859859
// isSubRequest specifies whether this is a sub request of a WriteMultiple
@@ -1541,7 +1541,7 @@ type WriteMultipleRequest struct {
15411541
Timeout time.Duration `json:"timeout"`
15421542

15431543
// Durability is currently only used in On-Prem installations.
1544-
// Added in SDK Version 5.3.0
1544+
// Added in SDK Version 1.3.0
15451545
Durability types.Durability `json:"durability"`
15461546

15471547
// checkSubReqSize represents whether to check sub request size.
@@ -1703,7 +1703,7 @@ type MultiDeleteRequest struct {
17031703
Timeout time.Duration `json:"timeout"`
17041704

17051705
// Durability is currently only used in On-Prem installations.
1706-
// Added in SDK Version 5.3.0
1706+
// Added in SDK Version 1.3.0
17071707
Durability types.Durability `json:"durability"`
17081708

17091709
common.InternalRequestData

nosqldb/result.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ type GetResult struct {
111111

112112
// ModificationTime represents the modification time of an existing row.
113113
// Its value is in milliseconds since January 1 1970.
114-
// Added in SDK Version 5.3.0
114+
// Added in SDK Version 1.3.0
115115
ModificationTime int64 `json:"modificationTime"`
116116

117117
DelayInfo
@@ -443,7 +443,7 @@ type WriteResult struct {
443443

444444
// ExistingModificationTime represents the modification time of an existing row.
445445
// Its value is in milliseconds since January 1 1970.
446-
// Added in SDK Version 5.3.0
446+
// Added in SDK Version 1.3.0
447447
ExistingModificationTime int64 `json:"existingModificationTime"`
448448
}
449449

nosqldb/types/types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const (
105105
// Durability defines the durability characteristics associated with a standalone write
106106
// (put or update) operation.
107107
//
108-
// Added in SDK Version 5.3.0
108+
// Added in SDK Version 1.3.0
109109
//
110110
// This is currently only supported in On-Prem installations. It is ignored
111111
// in the cloud service.
@@ -139,7 +139,7 @@ const (
139139
Provisioned CapacityMode = iota // 0
140140

141141
// OnDemand table: table scales with usage
142-
// Added in SDK Version 5.3.0
142+
// Added in SDK Version 1.3.0
143143
OnDemand // 1
144144
)
145145

0 commit comments

Comments
 (0)