Skip to content

Commit fe404c8

Browse files
committed
Prepare 0.3.2 release
1 parent d8acd1e commit fe404c8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
isotopes-0.x.x (2018-xx-xx)
1+
isotopes-0.3.2 (2018-08-01)
22

33
* Added utility types for recursively making types all optional or required
44

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "isotopes",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"description": "Serverless and typed object store built on top of AWS SimpleDB",
55
"keywords": [
66
"aws",

src/isotopes/client/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import { IsotopeDictionary } from "../format"
3333
* Isotope client options
3434
*/
3535
export interface IsotopeClientOptions {
36-
consistent: boolean /* Whether to use consistent reads */
36+
consistent?: boolean /* Whether to use consistent reads */
3737
}
3838

3939
/**

src/isotopes/format/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export interface IsotopeDictionary {
5151
*/
5252
export interface IsotopeFormatOptions {
5353
encoding?: IsotopeFormatEncoding /* Format encoding */
54-
multiple?: boolean /* Multiple attributes for arrays */
54+
multiple?: boolean /* Multi-attribute values for arrays */
5555
}
5656

5757
/* ----------------------------------------------------------------------------

0 commit comments

Comments
 (0)