Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to 0.7.1 and add Project.toml #100

Merged
merged 3 commits into from
Jan 7, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.jl.cov
*.jl.mem
Manifest.toml
27 changes: 27 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name = "Mux"
jpsamaroo marked this conversation as resolved.
Show resolved Hide resolved
uuid = "a975b10e-0019-58db-a62f-e48ff68538c9"
version = "0.7.1"

[deps]
AssetRegistry = "bf4720bc-e11a-5d0c-854e-bdca1663c893"
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
Hiccup = "9fb69e20-1954-56bb-a84f-559cc56a8ff7"
Lazy = "50d2b5c4-7a5e-59d5-8109-a42b560f39c0"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
WebSockets = "104b5d7c-a370-577a-8038-80a2059c5097"

[compat]
AssetRegistry = "0.1"
Copy link
Member

Choose a reason for hiding this comment

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

Can these dependencies be opened up a bit more?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Sure, although technically only WebSockets can be changed from 1.5 to 1 according to Semver if we want to guarantee non-breakage (because minor releases can have breaking changes while our deps are <1.x).

Copy link
Member

Choose a reason for hiding this comment

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

Oh I meant something like:

HTTP = "0.6, 0.7, 0.8

(Assuming those versions work with the project as well)

HTTP = "0.8"
Hiccup = "0.2"
Lazy = "0.14"
WebSockets = "1.5"
julia = "1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]