Skip to content

Commit 5b232b7

Browse files
authored
Merge pull request #100 from plotly/dev
0.1.4 Release
2 parents a4bbd1d + cb64b94 commit 5b232b7

28 files changed

+82300
-20806
lines changed

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,4 @@ workflows:
5757
version: 2
5858
build:
5959
jobs:
60-
- "test":
61-
context: dash-docker-hub
60+
- "test"

.github/workflows/CompatHelper.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CompatHelper
2+
on:
3+
schedule:
4+
- cron: '00 00 * * *'
5+
workflow_dispatch:
6+
jobs:
7+
CompatHelper:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Pkg.add("CompatHelper")
11+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+
- name: CompatHelper.main()
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
run: julia -e 'using CompatHelper; CompatHelper.main()'

Project.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Dash"
22
uuid = "1b08a953-4be3-4667-9a23-3db579824955"
33
authors = ["Chris Parmer <chris@plotly.com>", "Alexandr Romanenko <waralex@gmail.com>"]
4-
version = "0.1.3"
4+
version = "0.1.4"
55

66
[deps]
77
CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193"
@@ -22,15 +22,15 @@ UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
2222
[compat]
2323
CodecZlib = "0.6, 0.7"
2424
DashBase = "0.1"
25-
DashCoreComponents = "1.10.2"
26-
DashHtmlComponents = "1.0.3"
27-
DashTable = "4.9.0"
25+
DashCoreComponents = "1.16.0"
26+
DashHtmlComponents = "1.1.3"
27+
DashTable = "4.11.3"
2828
DataStructures = "0.17, 0.18"
29-
HTTP = "0.8.10"
29+
HTTP = "0.8.10, 0.9"
3030
JSON = "0.21"
3131
JSON2 = "0.3"
3232
MD5 = "0.2"
33-
PlotlyBase = "0.3, 0.4"
33+
PlotlyBase = "0.3, 0.4, 0.5"
3434
julia = "1.2"
3535

3636
[extras]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Project Status
88

9-
The core Dash component libraries have been submitted to the Julia package registry; upon their acceptance, `Dash.jl` will be submitted. The initial release of `Dash.jl` is anticipated in September 2020. A Julia version of the Dash Tutorial is currently in preparation, and will be available online soon. As of v1.15.0 of Dash, Julia components can be generated in tandem with Python and R components. Interested in getting involved with the project? Sponsorship is a great way to accelerate the progress of open source projects like this one; please feel free to [reach out to us](https://plotly.com/consulting-and-oem/)!
9+
As of v1.15.0 of Dash, Julia components can be generated in tandem with Python and R components. Interested in getting involved with the project? Sponsorship is a great way to accelerate the progress of open source projects like this one; please feel free to [reach out to us](https://plotly.com/consulting-and-oem/)! Just getting started? Check out the [Dash for Julia User Guide](https://dash-julia.plotly.com/)!
1010

1111
#### Create beautiful, analytic applications in Julia
1212

0 commit comments

Comments
 (0)