Skip to content

Commit

Permalink
Update to 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Nov 19, 2019
1 parent 2a48a21 commit c976f13
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Change Log
## Next Version

## 4.3.0

### Added
- Added ability to set nested template options from the command line using dot syntax eg `--option "typeAliases.ID: String"` #189
- Added a customizable `jsonEncoder` on APIClient #172 #203
Expand All @@ -17,6 +19,8 @@
- Fixed missing customization of JSONEncoder instance to encode request's body #147
- Fixed string uploads #161

[Commits](https://github.com/yonaskolb/SwagGen/compare/4.2.0...4.3.0)

## 4.2.0

### Swift Template Changes
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
TOOL_NAME = swaggen
VERSION = 4.2.0
VERSION = 4.3.0

PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(TOOL_NAME)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ $ swift run
Add the following to your Package.swift file's dependencies:

```swift
.package(url: "https://github.com/yonaskolb/SwagGen.git", from: "4.0.0"),
.package(url: "https://github.com/yonaskolb/SwagGen.git", from: "4.3.0"),
```

And then import wherever needed:
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwagGen/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PathKit
import SwagGenKit
import SwiftCLI

let version = "4.2.0"
let version = "4.3.0"
let generateCommand = GenerateCommand()
let cli = CLI(name: "swaggen", version: version, description: "Swagger code generator", commands: [generateCommand])
cli.goAndExit()

0 comments on commit c976f13

Please sign in to comment.