Skip to content

Commit

Permalink
Bump to 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pxl-th committed Dec 5, 2023
1 parent 08afb0a commit 2894e58
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "AMDGPU"
uuid = "21141c5a-9bdb-4563-92ae-f87d6854732e"
authors = ["Julian P Samaroo <[email protected]>", "Valentin Churavy <[email protected]>", "Anton Smirnov <[email protected]>"]
version = "0.8.1"
version = "0.8.2"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand Down
9 changes: 9 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
using AMDGPU
using Documenter

const dst = "https://amdgpu.juliagpu.org/stable/"

function main()
ci = get(ENV, "CI", "") == "true"

@info "Generating Documenter site"
makedocs(
sitename="AMDGPU.jl",
format = Documenter.HTML(
# Use clean URLs on CI
prettyurls = ci,
canonical = dst,
assets = ["assets/favicon.ico"],
analytics = "UA-154489943-2",
),
pages = [
"Home" => "index.md",
"Quick Start" => "quickstart.md",
Expand Down
Binary file added docs/src/assets/favicon.ico
Binary file not shown.

2 comments on commit 2894e58

@pxl-th
Copy link
Member Author

@pxl-th pxl-th commented on 2894e58 Dec 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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 v0.8.2 -m "<description of version>" 2894e580a3ffe1f1acdf18f5fd51b4063def0c49
git push origin v0.8.2

Please sign in to comment.