Skip to content

Commit

Permalink
1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix-Gauthier committed Dec 15, 2021
1 parent 85b600e commit 64bfb5b
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 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 = "7a62d6a9188ce69531af3977d4d02b75d629c7362de9871d38bbae738f8a392b"
url = "https://unpkg.com/[email protected].0/deps/deps.tar.gz"
sha256 = "605cb911677d1df4fe37fc45376cb7ea9875008ceea24b500872662ea698ba7f"
url = "https://unpkg.com/[email protected].1/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.0
Version: 1.3.1
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.0"
version = "1.3.1"

[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.0", src = list(href = NULL,
version = "1.3.1", 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.0", src = list(href = NULL,
version = "1.3.1", 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.0",
"version": "1.3.1",
"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.0",
"version": "1.3.1",
"description": "Dash component wrapper for `react-textarea-autocomplete`",
"bugs": {
"url": "https://github.com/etpinard/dash-textarea-autocomplete/issues"
Expand Down
10 changes: 5 additions & 5 deletions src/DashTextareaAutocomplete.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@
module DashTextareaAutocomplete
using Dash, Pkg.Artifacts

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

include("jl/dashtextareaautocomplete.jl")

function __init__()
DashBase.register_package(
DashBase.ResourcePkg(
"dash_textarea_autocomplete",
resources_path,
resources_path(),
version = version,
[
DashBase.Resource(
relative_package_path = "dash_textarea_autocomplete.min.js",
external_url = "https://unpkg.com/[email protected].0/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js",
external_url = "https://unpkg.com/[email protected].1/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].0/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js.map",
external_url = "https://unpkg.com/[email protected].1/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js.map",
dynamic = true,
async = nothing,
type = :js
Expand Down

2 comments on commit 64bfb5b

@Felix-Gauthier
Copy link
Collaborator 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/50643

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.1 -m "<description of version>" 64bfb5b639921d866adf8428acb759b6bc826381
git push origin v1.3.1

Please sign in to comment.