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 e6c2be0 commit 0e7445e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Assets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Genie, Genie.Configuration, Genie.Router, Genie.WebChannels
import Genie.Renderer.Json

export include_asset, css_asset, js_asset, js_settings, css, js
export embedded, channels, channels_script, channels_support
export embedded, channels_script, channels_support
export favicon_support


Expand Down
2 changes: 1 addition & 1 deletion test/tests_Assets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@safetestset "Embedded assets" begin
using Genie, Genie.Assets

@test channels()[1:18] == "window.Genie = {};"
@test Assets.channels()[1:18] == "window.Genie = {};"
@test channels_script()[1:27] == "<script>\nwindow.Genie = {};"

@test channels_support() == "<script src=\"/__/channels.js?v=$(Genie.Configuration.GENIE_VERSION)\"></script>"
Expand Down
6 changes: 5 additions & 1 deletion test/tests_genie_generators.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#=
@safetestset "Create new app" begin
testdir = pwd()
Expand Down Expand Up @@ -150,4 +152,6 @@
Pkg.activate(".")
end;
end;
=#

2 comments on commit 0e7445e

@essenciary
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/22772

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.7.0 -m "<description of version>" 0e7445e7edd610675f4391cd5530e60d91f5971a
git push origin v1.7.0

Please sign in to comment.