Skip to content

Commit 7f5d360

Browse files
committed
v1.0.1
1 parent 0a2f2fe commit 7f5d360

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dashCytoscape
22
Title: A Component Library for 'Dash' aimed at facilitating network visualization in R, wrapped around Cytoscape.js.
3-
Version: 1.0.0
3+
Version: 1.0.1
44
Description: A Component Library for 'Dash' aimed at facilitating network visualization in R, wrapped around Cytoscape.js.
55
Depends: R (>= 3.0.2)
66
Imports:

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "DashCytoscape"
33
uuid = "1b08a953-4be3-4667-9a23-85cc21bfd5e9"
44
authors = ["The Plotly Team <[email protected]>"]
5-
version = "1.0.0"
5+
version = "1.0.1"
66

77
[deps]
88
Dash = "1b08a953-4be3-4667-9a23-3db579824955"

R/internal.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.dashCytoscape_js_metadata <- function() {
22
deps_metadata <- list(`dash_cytoscape` = structure(list(name = "dash_cytoscape",
3-
version = "1.0.0", src = list(href = NULL,
3+
version = "1.0.1", src = list(href = NULL,
44
file = "deps"), meta = NULL,
55
script = 'dash_cytoscape.min.js',
66
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCytoscape",

dash_cytoscape/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-cytoscape",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A Component Library for Dash aimed at facilitating network visualization in Python, wrapped around Cytoscape.js",
55
"repository": {
66
"type": "git",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-cytoscape",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A Component Library for Dash aimed at facilitating network visualization in Python, wrapped around Cytoscape.js",
55
"repository": {
66
"type": "git",

src/DashCytoscape.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module DashCytoscape
33
using Dash
44

55
const resources_path = realpath(joinpath( @__DIR__, "..", "deps"))
6-
const version = "1.0.0"
6+
const version = "1.0.1"
77

88
include("jl/cyto_cytoscape.jl")
99

@@ -16,7 +16,7 @@ function __init__()
1616
[
1717
DashBase.Resource(
1818
relative_package_path = "dash_cytoscape.min.js",
19-
external_url = "https://unpkg.com/[email protected].0/dash_cytoscape/dash_cytoscape.min.js",
19+
external_url = "https://unpkg.com/[email protected].1/dash_cytoscape/dash_cytoscape.min.js",
2020
dynamic = nothing,
2121
async = nothing,
2222
type = :js

0 commit comments

Comments
 (0)