Skip to content

Commit

Permalink
Prepare 0.3.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Aug 1, 2018
1 parent d8acd1e commit fe404c8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
isotopes-0.x.x (2018-xx-xx)
isotopes-0.3.2 (2018-08-01)

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

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "isotopes",
"version": "0.3.1",
"version": "0.3.2",
"description": "Serverless and typed object store built on top of AWS SimpleDB",
"keywords": [
"aws",
Expand Down
2 changes: 1 addition & 1 deletion src/isotopes/client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { IsotopeDictionary } from "../format"
* Isotope client options
*/
export interface IsotopeClientOptions {
consistent: boolean /* Whether to use consistent reads */
consistent?: boolean /* Whether to use consistent reads */
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/isotopes/format/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export interface IsotopeDictionary {
*/
export interface IsotopeFormatOptions {
encoding?: IsotopeFormatEncoding /* Format encoding */
multiple?: boolean /* Multiple attributes for arrays */
multiple?: boolean /* Multi-attribute values for arrays */
}

/* ----------------------------------------------------------------------------
Expand Down

0 comments on commit fe404c8

Please sign in to comment.