From 96834f745961d4667e6f671a8c75381ca82d5dfe Mon Sep 17 00:00:00 2001 From: alexcjohnson Date: Fri, 26 Jan 2024 20:29:08 -0500 Subject: [PATCH] v1.0.0 --- CHANGELOG.md | 2 +- DESCRIPTION | 2 +- Project.toml | 2 +- R/internal.R | 2 +- dash_cytoscape/package.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/DashCytoscape.jl | 4 ++-- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a5c0870..43c79fe8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/DESCRIPTION b/DESCRIPTION index 80378197..a8db2a74 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -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: diff --git a/Project.toml b/Project.toml index 0b0cefe7..0b81a993 100644 --- a/Project.toml +++ b/Project.toml @@ -2,7 +2,7 @@ name = "DashCytoscape" uuid = "1b08a953-4be3-4667-9a23-85cc21bfd5e9" authors = ["The Plotly Team "] -version = "0.3.0" +version = "1.0.0" [deps] Dash = "1b08a953-4be3-4667-9a23-3db579824955" diff --git a/R/internal.R b/R/internal.R index a179d9eb..d4011a6c 100644 --- a/R/internal.R +++ b/R/internal.R @@ -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", diff --git a/dash_cytoscape/package.json b/dash_cytoscape/package.json index 77f098bf..f7b2f33e 100644 --- a/dash_cytoscape/package.json +++ b/dash_cytoscape/package.json @@ -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", diff --git a/package-lock.json b/package-lock.json index f12b5fe5..294d7f44 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "dash-cytoscape", - "version": "0.3.0", + "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "dash-cytoscape", - "version": "0.3.0", + "version": "1.0.0", "license": "MIT", "dependencies": { "@ungap/custom-elements": "^1.3.0", diff --git a/package.json b/package.json index 77f098bf..f7b2f33e 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/DashCytoscape.jl b/src/DashCytoscape.jl index 85e2900a..18d97c5d 100644 --- a/src/DashCytoscape.jl +++ b/src/DashCytoscape.jl @@ -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") @@ -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