Skip to content

Commit 5dc7d5d

Browse files
committed
1.1.0
1 parent 8926f3e commit 5dc7d5d

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dashTextareaAutocomplete
22
Title: Dash component wrapper for `react-textarea-autocomplete`
3-
Version: 1.0.1
3+
Version: 1.1.0
44
Description: Dash component wrapper for `react-textarea-autocomplete`
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 = "DashTextareaAutocomplete"
33
uuid = "1b08a953-4be3-4667-9a23-5aadec407a69"
44
authors = ["Etienne Tetreault-Pinard <[email protected]>"]
5-
version = "1.0.1"
5+
version = "1.1.0"
66

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

R/internal.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.dashTextareaAutocomplete_js_metadata <- function() {
22
deps_metadata <- list(`dash_textarea_autocomplete` = structure(list(name = "dash_textarea_autocomplete",
3-
version = "1.0.1", src = list(href = NULL,
3+
version = "1.1.0", src = list(href = NULL,
44
file = "deps"), meta = NULL,
55
script = 'dash_textarea_autocomplete.min.js',
66
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashTextareaAutocomplete",
77
all_files = FALSE), class = "html_dependency"),
88
`dash_textarea_autocomplete` = structure(list(name = "dash_textarea_autocomplete",
9-
version = "1.0.1", src = list(href = NULL,
9+
version = "1.1.0", src = list(href = NULL,
1010
file = "deps"), meta = NULL,
1111
script = 'dash_textarea_autocomplete.min.js.map',
1212
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashTextareaAutocomplete",

dash_textarea_autocomplete/package-info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-textarea-autocomplete",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "Dash component wrapper for `react-textarea-autocomplete`",
55
"bugs": {
66
"url": "https://github.com/etpinard/dash-textarea-autocomplete/issues"

package-lock.json

Lines changed: 1 addition & 1 deletion
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-textarea-autocomplete",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "Dash component wrapper for `react-textarea-autocomplete`",
55
"bugs": {
66
"url": "https://github.com/etpinard/dash-textarea-autocomplete/issues"

src/DashTextareaAutocomplete.jl

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

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

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

@@ -16,14 +16,14 @@ function __init__()
1616
[
1717
DashBase.Resource(
1818
relative_package_path = "dash_textarea_autocomplete.min.js",
19-
external_url = "https://unpkg.com/dash_textarea_autocomplete@1.0.1/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js",
19+
external_url = "https://unpkg.com/dash_textarea_autocomplete@1.1.0/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js",
2020
dynamic = nothing,
2121
async = nothing,
2222
type = :js
2323
),
2424
DashBase.Resource(
2525
relative_package_path = "dash_textarea_autocomplete.min.js.map",
26-
external_url = "https://unpkg.com/dash_textarea_autocomplete@1.0.1/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js.map",
26+
external_url = "https://unpkg.com/dash_textarea_autocomplete@1.1.0/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js.map",
2727
dynamic = true,
2828
async = nothing,
2929
type = :js

0 commit comments

Comments
 (0)