Skip to content

Commit 6bf0745

Browse files
author
Xing Han Lu
authored
Release v0.0.6 (#31)
* Update changelog * bump version number * npm run build
1 parent d5bb5c3 commit 6bf0745

File tree

7 files changed

+18
-9
lines changed

7 files changed

+18
-9
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dashVtk
22
Title: React based declarative usage of vtk.js for Dash
3-
Version: 0.0.5
3+
Version: 0.0.6
44
Description: React based declarative usage of vtk.js for Dash
55
Depends: R (>= 3.0.2)
66
Imports:

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "DashVtk"
33
uuid = "1b08a953-4be3-4667-9a23-818b1eccd4c7"
44
authors = ["Kitware Inc <[email protected]> and Plotly Technologies <[email protected]>"]
5-
version = "0.0.5"
5+
version = "0.0.6"
66

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

R/internal.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.dashVtk_js_metadata <- function() {
22
deps_metadata <- list(`dash_vtk` = structure(list(name = "dash_vtk",
3-
version = "0.0.5", src = list(href = NULL,
3+
version = "0.0.6", src = list(href = NULL,
44
file = "deps"), meta = NULL,
55
script = 'dash_vtk.min.js',
66
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashVtk",
77
all_files = FALSE), class = "html_dependency"),
88
`dash_vtk` = structure(list(name = "dash_vtk",
9-
version = "0.0.5", src = list(href = NULL,
9+
version = "0.0.6", src = list(href = NULL,
1010
file = "deps"), meta = NULL,
1111
script = 'dash_vtk.min.js.map',
1212
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashVtk",

dash_vtk/package-info.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash_vtk",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "React based declarative usage of vtk.js for Dash",
55
"repository": {
66
"type": "git",

docs/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.6] - 2021-02-22
10+
11+
### Fixed
12+
* fix(react-vtk-js): fix dynamic handling of DataArray update
13+
14+
### Changed
15+
* update to react-vtk-js 1.1.4
16+
* doc(View): Update props to include style/className
17+
918
## [0.0.5] - 2021-02-15
1019

1120
### Added

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash_vtk",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "React based declarative usage of vtk.js for Dash",
55
"repository": {
66
"type": "git",

src/DashVtk.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module DashVtk
33
using Dash
44

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

88
include("vtk_algorithm.jl")
99
include("vtk_calculator.jl")
@@ -35,14 +35,14 @@ function __init__()
3535
[
3636
DashBase.Resource(
3737
relative_package_path = "dash_vtk.min.js",
38-
external_url = "https://unpkg.com/[email protected].5/dash_vtk/dash_vtk.min.js",
38+
external_url = "https://unpkg.com/[email protected].6/dash_vtk/dash_vtk.min.js",
3939
dynamic = nothing,
4040
async = nothing,
4141
type = :js
4242
),
4343
DashBase.Resource(
4444
relative_package_path = "dash_vtk.min.js.map",
45-
external_url = "https://unpkg.com/[email protected].5/dash_vtk/dash_vtk.min.js.map",
45+
external_url = "https://unpkg.com/[email protected].6/dash_vtk/dash_vtk.min.js.map",
4646
dynamic = true,
4747
async = nothing,
4848
type = :js

0 commit comments

Comments
 (0)