Skip to content

Commit

Permalink
1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
etpinard committed Dec 20, 2021
1 parent 3b2c58a commit 1a69c43
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Artifacts.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
git-tree-sha1 = "4cd536223251615d2ae01a3463bc56d2342c6326"

[[dash_textarea_autocomplete_resources.download]]
sha256 = "605cb911677d1df4fe37fc45376cb7ea9875008ceea24b500872662ea698ba7f"
url = "https://unpkg.com/[email protected].1/deps/deps.tar.gz"
sha256 = "53df754a9b137041671a11d1138ea4dcb20bf5831ea7aa33d3c679f41cc6be2e"
url = "https://unpkg.com/[email protected].2/deps/deps.tar.gz"
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: dashTextareaAutocomplete
Title: Dash component wrapper for `react-textarea-autocomplete`
Version: 1.3.1
Version: 1.3.2
Description: Dash component wrapper for `react-textarea-autocomplete`
Depends: R (>= 3.0.2)
Imports:
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "DashTextareaAutocomplete"
uuid = "1b08a953-4be3-4667-9a23-5aadec407a69"
authors = ["Etienne Tetreault-Pinard <[email protected]>"]
version = "1.3.1"
version = "1.3.2"

[deps]
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Expand Down
4 changes: 2 additions & 2 deletions R/internal.R
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.dashTextareaAutocomplete_js_metadata <- function() {
deps_metadata <- list(`dash_textarea_autocomplete` = structure(list(name = "dash_textarea_autocomplete",
version = "1.3.1", src = list(href = NULL,
version = "1.3.2", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'dash_textarea_autocomplete.min.js',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashTextareaAutocomplete",
all_files = FALSE), class = "html_dependency"),
`dash_textarea_autocomplete` = structure(list(name = "dash_textarea_autocomplete",
version = "1.3.1", src = list(href = NULL,
version = "1.3.2", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'dash_textarea_autocomplete.min.js.map',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashTextareaAutocomplete",
Expand Down
2 changes: 1 addition & 1 deletion dash_textarea_autocomplete/package-info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-textarea-autocomplete",
"version": "1.3.1",
"version": "1.3.2",
"description": "Dash component wrapper for `react-textarea-autocomplete`",
"bugs": {
"url": "https://github.com/etpinard/dash-textarea-autocomplete/issues"
Expand Down
Binary file modified deps/deps.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-textarea-autocomplete",
"version": "1.3.1",
"version": "1.3.2",
"description": "Dash component wrapper for `react-textarea-autocomplete`",
"bugs": {
"url": "https://github.com/etpinard/dash-textarea-autocomplete/issues"
Expand Down
6 changes: 3 additions & 3 deletions src/DashTextareaAutocomplete.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module DashTextareaAutocomplete
using Dash, Pkg.Artifacts

resources_path() = artifact"dash_textarea_autocomplete_resources"
const version = "1.3.1"
const version = "1.3.2"

include("jl/dashtextareaautocomplete.jl")

Expand All @@ -16,14 +16,14 @@ function __init__()
[
DashBase.Resource(
relative_package_path = "dash_textarea_autocomplete.min.js",
external_url = "https://unpkg.com/[email protected].1/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js",
external_url = "https://unpkg.com/[email protected].2/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js",
dynamic = nothing,
async = nothing,
type = :js
),
DashBase.Resource(
relative_package_path = "dash_textarea_autocomplete.min.js.map",
external_url = "https://unpkg.com/[email protected].1/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js.map",
external_url = "https://unpkg.com/[email protected].2/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js.map",
dynamic = true,
async = nothing,
type = :js
Expand Down

2 comments on commit 1a69c43

@etpinard
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register branch=main

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/50887

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.3.2 -m "<description of version>" 1a69c434ab5985a4938ca6d0a5da284c8628c046
git push origin v1.3.2

Please sign in to comment.