Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcjohnson committed Jan 27, 2024
1 parent fdefd85 commit 96834f7
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [UNRELEASED]
## [1.0.0] - 2024-01-26

### Removed
* [#202](https://github.com/plotly/dash-cytoscape/pull/202) Drop support for Python 3.7 and below. New minimum Python version is 3.8
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: dashCytoscape
Title: A Component Library for 'Dash' aimed at facilitating network visualization in R, wrapped around Cytoscape.js.
Version: 0.3.0
Version: 1.0.0
Description: A Component Library for 'Dash' aimed at facilitating network visualization in R, wrapped around Cytoscape.js.
Depends: R (>= 3.0.2)
Imports:
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "DashCytoscape"
uuid = "1b08a953-4be3-4667-9a23-85cc21bfd5e9"
authors = ["The Plotly Team <[email protected]>"]
version = "0.3.0"
version = "1.0.0"

[deps]
Dash = "1b08a953-4be3-4667-9a23-3db579824955"
Expand Down
2 changes: 1 addition & 1 deletion R/internal.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.dashCytoscape_js_metadata <- function() {
deps_metadata <- list(`dash_cytoscape` = structure(list(name = "dash_cytoscape",
version = "0.3.0", src = list(href = NULL,
version = "1.0.0", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'dash_cytoscape.min.js',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCytoscape",
Expand Down
2 changes: 1 addition & 1 deletion dash_cytoscape/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-cytoscape",
"version": "0.3.0",
"version": "1.0.0",
"description": "A Component Library for Dash aimed at facilitating network visualization in Python, wrapped around Cytoscape.js",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-cytoscape",
"version": "0.3.0",
"version": "1.0.0",
"description": "A Component Library for Dash aimed at facilitating network visualization in Python, wrapped around Cytoscape.js",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/DashCytoscape.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module DashCytoscape
using Dash

const resources_path = realpath(joinpath( @__DIR__, "..", "deps"))
const version = "0.3.0"
const version = "1.0.0"

include("jl/cyto_cytoscape.jl")

Expand All @@ -16,7 +16,7 @@ function __init__()
[
DashBase.Resource(
relative_package_path = "dash_cytoscape.min.js",
external_url = "https://unpkg.com/dash-cytoscape@0.3.0/dash_cytoscape/dash_cytoscape.min.js",
external_url = "https://unpkg.com/dash-cytoscape@1.0.0/dash_cytoscape/dash_cytoscape.min.js",
dynamic = nothing,
async = nothing,
type = :js
Expand Down

0 comments on commit 96834f7

Please sign in to comment.