Skip to content

Commit

Permalink
Update to 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Dec 28, 2020
1 parent ab921df commit 4db8fad
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
Expand Up @@ -2,6 +2,8 @@

## Next Version

## 4.4.0

### Added
- Support multiple authentication types per operation #222 @malteburkert
- Added support for `decimal` number format #259 @yonaskolb
Expand All @@ -19,6 +21,8 @@
### Internal
- SwagGen minimum Swift version is 5.0

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

## 4.3.1

### Fixed
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.1
VERSION = 4.4.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 @@ -58,7 +58,7 @@ $ swift run
Add the following to your Package.swift file's dependencies:

```swift
.package(url: "https://github.com/yonaskolb/SwagGen.git", from: "4.3.0"),
.package(url: "https://github.com/yonaskolb/SwagGen.git", from: "4.4.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.3.1"
let version = "4.4.0"
let generateCommand = GenerateCommand()
let cli = CLI(name: "swaggen", version: version, description: "Swagger code generator", commands: [generateCommand])
cli.goAndExit()

0 comments on commit 4db8fad

Please sign in to comment.