Skip to content

Commit

Permalink
v1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
essenciary committed Oct 11, 2020
1 parent 44ce652 commit e6c2be0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v1.7 - 2020-10-10

* reexport Router


## v1.3 - 2020-09-29

* support for running the HTTP/S and WS/S on the same port
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Genie"
uuid = "c43c736e-a2d1-11e8-161f-af95117fbd1e"
authors = ["Adrian Salceanu <[email protected]>"]
version = "1.6"
version = "1.7"

[deps]
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
Expand Down
2 changes: 1 addition & 1 deletion src/Configuration.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module Configuration
References the current Genie version number.
"""
const GENIE_VERSION = v"1.5"
const GENIE_VERSION = v"1.7"

import Logging
import Genie
Expand Down
6 changes: 4 additions & 2 deletions src/Genie.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ include("constants.jl")
import Sockets
import Logging, LoggingExtras

using Reexport

include(joinpath(@__DIR__, "genie_types.jl"))

include("HTTPUtils.jl")
Expand Down Expand Up @@ -51,8 +53,8 @@ config.cache_storage == :File && include("cache_adapters/FileCache.jl")
include("Sessions.jl")
config.session_storage == :File && include("session_adapters/FileSession.jl")

export serve, up, down

export serve, up, down, loadapp
@reexport using .Router

"""
serve(path::String = Genie.config.server_document_root, params...; kwparams...)
Expand Down

0 comments on commit e6c2be0

Please sign in to comment.