Skip to content

Commit 228a872

Browse files
authored
Merge pull request #369 from t-bltg/colors-0.13
support `Colors` 0.13
2 parents f0d9425 + d4eca6b commit 228a872

File tree

3 files changed

+34
-15
lines changed

3 files changed

+34
-15
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
pull_request:
88
release:
99

10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
12+
cancel-in-progress: true
13+
1014
jobs:
1115
test:
1216
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.julia-arch }}
@@ -29,21 +33,11 @@ jobs:
2933

3034
steps:
3135
- uses: actions/checkout@v4
32-
- uses: julia-actions/setup-julia@v2
36+
- uses: julia-actions/setup-julia@latest
3337
with:
3438
version: ${{ matrix.julia-version }}
3539
arch: ${{ matrix.julia-arch }}
36-
- name: Cache artifacts
37-
uses: actions/cache@v4
38-
env:
39-
cache-name: cache-artifacts
40-
with:
41-
path: ~/.julia/artifacts
42-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
43-
restore-keys: |
44-
${{ runner.os }}-test-${{ env.cache-name }}-
45-
${{ runner.os }}-test-
46-
${{ runner.os }}-
40+
- uses: julia-actions/cache@v2
4741
- uses: julia-actions/julia-buildpkg@latest
4842
- uses: julia-actions/julia-runtest@latest
4943
- uses: julia-actions/[email protected]

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,28 @@ test/test_results
22
.DS_Store
33
*~
44
.vscode
5+
6+
# Files generated by invoking Julia with --code-coverage
7+
*.jl.cov
8+
*.jl.*.cov
9+
10+
# Files generated by invoking Julia with --track-allocation
11+
*.jl.mem
12+
13+
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
14+
# They contain absolute paths specific to the host computer, and so should not be committed
15+
deps/deps.jl
16+
deps/build.log
17+
deps/downloads/
18+
deps/usr/
19+
deps/src/
20+
21+
# Build artifacts for creating documentation generated by the Documenter package
22+
docs/build/
23+
docs/site/
24+
25+
# File generated by Pkg, the package manager, based on a corresponding Project.toml
26+
# It records a fixed state of all packages used by the project. As such, it should not be
27+
# committed for packages, but should be committed for applications that require a static
28+
# environment.
29+
Manifest.toml

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "Cairo"
22
uuid = "159f3aea-2a34-519c-b102-8c37f9878175"
3-
version = "1.1"
3+
version = "1.1.1"
44

55
[deps]
66
Cairo_jll = "83423d85-b0ee-5818-9007-b63ccbeb887a"
@@ -11,12 +11,12 @@ Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
1111
Pango_jll = "36c8627f-9965-5494-a995-c6b170f724f3"
1212

1313
[compat]
14-
julia = "1.6"
1514
Cairo_jll = "1.16"
16-
Colors = "0.12"
15+
Colors = "0.12, 0.13"
1716
Glib_jll = "2.59.0"
1817
Graphics = "1"
1918
Pango_jll = "1.42.4"
19+
julia = "1.6"
2020

2121
[extras]
2222
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"

0 commit comments

Comments
 (0)