Skip to content

Commit 05ac8fd

Browse files
authored
Merge pull request #64 from plotly/dev
Release Dash.jl v0.1.1
2 parents 4fdc242 + 27572a9 commit 05ac8fd

File tree

3 files changed

+31
-44
lines changed

3 files changed

+31
-44
lines changed

._travis.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

CompatHelper.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CompatHelper
2+
3+
on:
4+
schedule:
5+
- cron: '00 * * * *'
6+
issues:
7+
types: [opened, reopened]
8+
9+
jobs:
10+
build:
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
matrix:
14+
julia-version: [1.5.0]
15+
julia-arch: [x86]
16+
os: [ubuntu-latest]
17+
steps:
18+
- uses: julia-actions/setup-julia@latest
19+
with:
20+
version: ${{ matrix.julia-version }}
21+
- name: Pkg.add("CompatHelper")
22+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
23+
- name: CompatHelper.main()
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
run: julia -e 'using CompatHelper; CompatHelper.main()'

Project.toml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name = "Dash"
22
uuid = "1b08a953-4be3-4667-9a23-3db579824955"
3-
authors = ["Chris Parmer <[email protected]>",
4-
"Alexandr Romanenko <[email protected]>"]
5-
version = "0.1.0"
3+
authors = ["Chris Parmer <[email protected]>", "Alexandr Romanenko <[email protected]>"]
4+
version = "0.1.1"
65

76
[deps]
87
CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193"
@@ -15,26 +14,24 @@ HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
1514
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
1615
JSON2 = "2535ab7d-5cd8-5a07-80ac-9b1792aadce3"
1716
MD5 = "6ac74813-4b46-53a4-afec-0b5dc9d7885c"
18-
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
1917
PlotlyBase = "a03496cd-edff-5a9b-9e67-9cda94a718b5"
2018
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
2119
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2220
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
2321

2422
[compat]
25-
CodecZlib = "0.7.0"
23+
CodecZlib = "0.6, 0.7"
2624
DashBase = "0.1.0"
2725
DashCoreComponents = "1.10.2"
2826
DashHtmlComponents = "1.0.3"
2927
DashTable = "4.9.0"
30-
DataStructures = "0.17.5"
28+
DataStructures = "0.17.5, 0.18"
3129
HTTP = "0.8.10"
3230
JSON = "0.21.0"
3331
JSON2 = "0.3.1"
3432
MD5 = "0.2.1"
35-
MacroTools = "0.5.1"
3633
PlotlyBase = "0.3.0, 0.4"
37-
julia = "1.1"
34+
julia = "1.2"
3835

3936
[extras]
4037
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

0 commit comments

Comments
 (0)