Skip to content

Commit

Permalink
Update to 4.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Feb 1, 2020
1 parent 501cde1 commit ec2f10e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# Change Log

## Next Version

## 4.3.1

### Fixed
- Fixed `'??' has non-optional type` warning #207
- Fixed incorrect replacements in server variables #209
- Fixed nullable references not being generated as optionals #216 @alephao

### Internal
- Removed needless `Array` initialization. [#212](https://github.com/yonaskolb/SwagGen/pull/212) @RomanPodymov
- Removed needless `Array` initialization. #212 @RomanPodymov

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

## 4.3.0

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.3.0
VERSION = 4.3.1

PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(TOOL_NAME)
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.3.0"
let version = "4.3.1"
let generateCommand = GenerateCommand()
let cli = CLI(name: "swaggen", version: version, description: "Swagger code generator", commands: [generateCommand])
cli.goAndExit()

0 comments on commit ec2f10e

Please sign in to comment.