Skip to content

Commit e2b326d

Browse files
committed
0.2.0
1 parent 694b89d commit e2b326d

File tree

8 files changed

+12
-14
lines changed

8 files changed

+12
-14
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ This project was generated by the [dash-component-boilerplate](https://github.co
5555
$ npm version --no-git-tag-version <patch|minor|major>
5656
$ npm run build
5757
$ git add --all
58-
$ git commit -m "vX.Y.Z"
58+
$ git commit -m "X.Y.Z"
5959
$ git push
6060
```
6161
**N.B.**

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: 0.1.3
3+
Version: 0.2.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 = "0.1.3"
5+
version = "0.2.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 = "0.1.3", src = list(href = NULL,
3+
version = "0.2.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 = "0.1.3", src = list(href = NULL,
9+
version = "0.2.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: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-textarea-autocomplete",
3-
"version": "0.1.3",
3+
"version": "0.2.0",
44
"description": "Dash component wrapper for `react-textarea-autocomplete`",
55
"bugs": {
66
"url": "https://github.com/etpinard/dash-textarea-autocomplete/issues"
@@ -15,9 +15,7 @@
1515
"build:backends": "dash-generate-components ./src/lib/components dash_textarea_autocomplete -p package-info.json --r-prefix '' --jl-prefix ''",
1616
"build:backends-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:py_and_r)",
1717
"build": "npm run build:js && npm run build:backends",
18-
"build:activated": "npm run build:js && npm run build:backends-activated",
19-
"version": "npm run build && git add --all",
20-
"postversion": "node -e \"console.log('Version bumped, tagged and committed. If ok, run: git push && git push --tags')\""
18+
"build:activated": "npm run build:js && npm run build:backends-activated"
2119
},
2220
"author": "Etienne Tetreault-Pinard <[email protected]>",
2321
"license": "MIT",

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": "0.1.3",
3+
"version": "0.2.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 = "0.1.3"
6+
const version = "0.2.0"
77

88
include("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@0.1.3/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js",
19+
external_url = "https://unpkg.com/dash_textarea_autocomplete@0.2.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@0.1.3/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js.map",
26+
external_url = "https://unpkg.com/dash_textarea_autocomplete@0.2.0/dash_textarea_autocomplete/dash_textarea_autocomplete.min.js.map",
2727
dynamic = true,
2828
async = nothing,
2929
type = :js

0 commit comments

Comments
 (0)