From 6bf074512c47b30bb8099e67868026149fabff5a Mon Sep 17 00:00:00 2001 From: Xing Han Lu Date: Mon, 22 Feb 2021 16:12:18 -0500 Subject: [PATCH] Release v0.0.6 (#31) * Update changelog * bump version number * npm run build --- DESCRIPTION | 2 +- Project.toml | 2 +- R/internal.R | 4 ++-- dash_vtk/package-info.json | 2 +- docs/CHANGELOG.md | 9 +++++++++ package.json | 2 +- src/DashVtk.jl | 6 +++--- 7 files changed, 18 insertions(+), 9 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index a8fbb56..f306995 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: dashVtk Title: React based declarative usage of vtk.js for Dash -Version: 0.0.5 +Version: 0.0.6 Description: React based declarative usage of vtk.js for Dash Depends: R (>= 3.0.2) Imports: diff --git a/Project.toml b/Project.toml index f2b2a54..2e05e48 100644 --- a/Project.toml +++ b/Project.toml @@ -2,7 +2,7 @@ name = "DashVtk" uuid = "1b08a953-4be3-4667-9a23-818b1eccd4c7" authors = ["Kitware Inc and Plotly Technologies "] -version = "0.0.5" +version = "0.0.6" [deps] Dash = "1b08a953-4be3-4667-9a23-3db579824955" diff --git a/R/internal.R b/R/internal.R index 1b961ff..e1cbc0b 100644 --- a/R/internal.R +++ b/R/internal.R @@ -1,12 +1,12 @@ .dashVtk_js_metadata <- function() { deps_metadata <- list(`dash_vtk` = structure(list(name = "dash_vtk", -version = "0.0.5", src = list(href = NULL, +version = "0.0.6", src = list(href = NULL, file = "deps"), meta = NULL, script = 'dash_vtk.min.js', stylesheet = NULL, head = NULL, attachment = NULL, package = "dashVtk", all_files = FALSE), class = "html_dependency"), `dash_vtk` = structure(list(name = "dash_vtk", -version = "0.0.5", src = list(href = NULL, +version = "0.0.6", src = list(href = NULL, file = "deps"), meta = NULL, script = 'dash_vtk.min.js.map', stylesheet = NULL, head = NULL, attachment = NULL, package = "dashVtk", diff --git a/dash_vtk/package-info.json b/dash_vtk/package-info.json index bfbca8a..627e42d 100644 --- a/dash_vtk/package-info.json +++ b/dash_vtk/package-info.json @@ -1,6 +1,6 @@ { "name": "dash_vtk", - "version": "0.0.5", + "version": "0.0.6", "description": "React based declarative usage of vtk.js for Dash", "repository": { "type": "git", diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 3ad3cf8..12474e8 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6] - 2021-02-22 + +### Fixed +* fix(react-vtk-js): fix dynamic handling of DataArray update + +### Changed +* update to react-vtk-js 1.1.4 +* doc(View): Update props to include style/className + ## [0.0.5] - 2021-02-15 ### Added diff --git a/package.json b/package.json index bfbca8a..627e42d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dash_vtk", - "version": "0.0.5", + "version": "0.0.6", "description": "React based declarative usage of vtk.js for Dash", "repository": { "type": "git", diff --git a/src/DashVtk.jl b/src/DashVtk.jl index 58b74f5..a03b078 100644 --- a/src/DashVtk.jl +++ b/src/DashVtk.jl @@ -3,7 +3,7 @@ module DashVtk using Dash const resources_path = realpath(joinpath( @__DIR__, "..", "deps")) -const version = "0.0.5" +const version = "0.0.6" include("vtk_algorithm.jl") include("vtk_calculator.jl") @@ -35,14 +35,14 @@ function __init__() [ DashBase.Resource( relative_package_path = "dash_vtk.min.js", - external_url = "https://unpkg.com/dash_vtk@0.0.5/dash_vtk/dash_vtk.min.js", + external_url = "https://unpkg.com/dash_vtk@0.0.6/dash_vtk/dash_vtk.min.js", dynamic = nothing, async = nothing, type = :js ), DashBase.Resource( relative_package_path = "dash_vtk.min.js.map", - external_url = "https://unpkg.com/dash_vtk@0.0.5/dash_vtk/dash_vtk.min.js.map", + external_url = "https://unpkg.com/dash_vtk@0.0.6/dash_vtk/dash_vtk.min.js.map", dynamic = true, async = nothing, type = :js