Skip to content

Commit ca0caae

Browse files
1.3.0
1 parent 9deaaf4 commit ca0caae

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

Artifacts.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
git-tree-sha1 = "4cd536223251615d2ae01a3463bc56d2342c6326"
33

44
[[dash_textarea_autocomplete_resources.download]]
5-
sha256 = "d8fba3937f420ce717622336b255b20ceebe912fe52a9c0a55603892de1ca627"
6-
url = "https://unpkg.com/dash-textarea-autocomplete@1.2.1/deps/deps.tar.gz"
5+
sha256 = "7a62d6a9188ce69531af3977d4d02b75d629c7362de9871d38bbae738f8a392b"
6+
url = "https://unpkg.com/dash-textarea-autocomplete@1.3.0/deps/deps.tar.gz"

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.2.1
3+
Version: 1.3.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.2.1"
5+
version = "1.3.0"
66

77
[deps]
88
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"

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.2.1", src = list(href = NULL,
3+
version = "1.3.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.2.1", src = list(href = NULL,
9+
version = "1.3.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.2.1",
3+
"version": "1.3.0",
44
"description": "Dash component wrapper for `react-textarea-autocomplete`",
55
"bugs": {
66
"url": "https://github.com/etpinard/dash-textarea-autocomplete/issues"

deps/deps.tar.gz

-2 Bytes
Binary file not shown.

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.2.1",
3+
"version": "1.3.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, Pkg.Artifacts
44

55
const resources_path = artifact"dash_textarea_autocomplete_resources"
6-
const version = "1.2.1"
6+
const version = "1.3.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.2.1/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js",
19+
external_url = "https://unpkg.com/dash-textarea-autocomplete@1.3.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.2.1/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js.map",
26+
external_url = "https://unpkg.com/dash-textarea-autocomplete@1.3.0/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js.map",
2727
dynamic = true,
2828
async = nothing,
2929
type = :js

0 commit comments

Comments
 (0)