Skip to content

Commit

Permalink
Merge ee69a50 into 263d65a
Browse files Browse the repository at this point in the history
  • Loading branch information
tanmaykm committed Mar 20, 2020
2 parents 263d65a + ee69a50 commit 041788d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Swagger"
uuid = "2d69052b-6a58-5cd9-a030-a48559c324ac"
authors = ["Tanmay Mohapatra <tanmaykm@gmail.com>"]
version = "0.2.3"
version = "0.2.4"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
4 changes: 2 additions & 2 deletions plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</dependency>
</dependencies>
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
</project>
6 changes: 4 additions & 2 deletions src/Swagger.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ using JSON
using MbedTLS
using Dates

import Base: convert, show, summary, getindex, keys, length, getproperty, setproperty!, propertynames
import Base: convert, show, summary, getindex, keys, length, getproperty, setproperty!, propertynames, iterate
if isdefined(Base, :hasproperty)
import Base: hasproperty
end
import JSON: lower
import Base: iterate

abstract type SwaggerModel end
abstract type SwaggerApi end
Expand Down

0 comments on commit 041788d

Please sign in to comment.