Skip to content

Commit

Permalink
Bump version, update changelog, regenerate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
designatednerd committed Oct 3, 2019
1 parent 0888dd2 commit 14de542
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change log

### v0.16.1
- Updated the way `run-bundled-codegen` checks whether the bundled codegen has already been unzipped and has node locally. ([#806](https://github.com/apollographql/apollo-ios/pull/806))
- Updated how default parameters are provided for `RequestCreatorProtocol`. ([#804](https://github.com/apollographql/apollo-ios/pull/804))

### v0.16.0
- **BREAKING**: We've switched to a much simpler setup which does not involve NPM in order to use our CLI. This requires updating your build scripts. Please follow the [updated instructions for setting up the build script here](https://www.apollographql.com/docs/ios/installation/#adding-a-code-generation-build-step). The existing build script will continue to work until the next minor release, at which point it will be removed. ([#766](https://github.com/apollographql/apollo-ios/pull/766))
- Included CLI version fixes issues which showed up in `0.15.2`.
Expand Down
2 changes: 1 addition & 1 deletion Configuration/Shared/Project-Version.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CURRENT_PROJECT_VERSION = 0.16.0
CURRENT_PROJECT_VERSION = 0.16.1
19 changes: 19 additions & 0 deletions docs/source/api/Apollo/classes/MultipartFormData.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,25 @@ public convenience init()

> Convenience initializer which uses a pre-defined boundary

### `appendPart(string:name:)`

```swift
public func appendPart(string: String, name: String) throws
```

> Appends the passed-in string as a part of the body.
>
> - Parameters:
> - string: The string to append
> - name: The name of the part to pass along to the server

#### Parameters

| Name | Description |
| ---- | ----------- |
| string | The string to append |
| name | The name of the part to pass along to the server |

### `appendPart(data:name:contentType:filename:)`

```swift
Expand Down
4 changes: 2 additions & 2 deletions docs/source/api/Apollo/extensions/RequestCreator.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
### `requestBody(for:sendOperationIdentifiers:)`

```swift
public func requestBody<Operation: GraphQLOperation>(for operation: Operation, sendOperationIdentifiers: Bool = false) -> GraphQLMap
public func requestBody<Operation: GraphQLOperation>(for operation: Operation, sendOperationIdentifiers: Bool) -> GraphQLMap
```

> Creates a `GraphQLMap` out of the passed-in operation
Expand All @@ -30,7 +30,7 @@ public func requestMultipartFormData<Operation: GraphQLOperation>(for operation:
files: [GraphQLFile],
sendOperationIdentifiers: Bool,
serializationFormat: JSONSerializationFormat.Type,
manualBoundary: String? = nil) throws -> MultipartFormData
manualBoundary: String?) throws -> MultipartFormData
```

> Creates multi-part form data to send with a request
Expand Down

0 comments on commit 14de542

Please sign in to comment.