Skip to content

Commit

Permalink
Add AlgebraOfGraphics to project (fix #275)
Browse files Browse the repository at this point in the history
  • Loading branch information
rikhuijzer committed Apr 6, 2022
1 parent 2780426 commit 3e30f21
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
matrix:
version:
- "1.6"
- "1.7"
- "1"
os:
- ubuntu-latest

Expand All @@ -37,11 +37,9 @@ jobs:
version: ${{ matrix.version }}

- uses: julia-actions/cache@v1
with:
cache-registries: "true"

- name: Install Julia dependencies
uses: julia-actions/julia-buildpkg@latest
uses: julia-actions/julia-buildpkg@v1

- name: Install extra dependencies
run: julia --project -e 'using Books; Books.install_dependencies()'
Expand Down
6 changes: 4 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name = "Books"
uuid = "939d5c6b-51ae-42e7-97ca-7564d0d4ad91"
authors = ["Rik Huijzer <[email protected]>"]
version = "1.2.4"
version = "1.2.5"

[deps]
AlgebraOfGraphics = "cbdf2221-f076-402e-a563-3d30da359d67"
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
CodeTracking = "da1fd8a2-8d9e-5ec2-8556-3022fb5608a2"
Expand All @@ -25,9 +26,10 @@ pandoc_crossref_jll = "f96e3c25-ae70-5588-8d8e-4a7ab3ba4c45"
pandoc_jll = "c5432543-76ad-5c9d-82bf-db097047a5e2"

[compat]
AlgebraOfGraphics = "0.6"
CairoMakie = "0.5, 0.6, 0.7"
CodeTracking = "1.0"
DataFrames = "0.22, 1.0, 1.1, 1.2"
DataFrames = "0.22, 1"
Latexify = "0.15"
LiveServer = "0.6, 0.7"
Makie = "0.15, 0.16"
Expand Down
4 changes: 2 additions & 2 deletions test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
Documenter = "0.26"
MCMCChains = "4.9"
Documenter = "0.27"
MCMCChains = "4, 5"

2 comments on commit 3e30f21

@rikhuijzer
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

Release notes:
Fixes a problem with AlgebraOfGraphics.jl.

@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/58028

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.2.5 -m "<description of version>" 3e30f2197522b72fd270d6d4ceb03615fa0d6049
git push origin v1.2.5

Please sign in to comment.