Skip to content

Commit

Permalink
migrating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
arhik committed Nov 15, 2023
1 parent b3a8e74 commit ebc21d4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "WGPUCore"
uuid = "53d714bf-0d76-4802-84b4-6cb75cca55f5"
authors = ["arhik <[email protected]>"]
version = "0.1.3"
version = "0.1.4"

[deps]
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# WGPUCore

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://arhik.github.io/WGPUCore.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://arhik.github.io/WGPUCore.jl/dev/)
[![Build Status](https://github.com/arhik/WGPUCore.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/arhik/WGPUCore.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/arhik/WGPUCore.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/arhik/WGPUCore.jl)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaWGPU.github.io/WGPUCore.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaWGPU.github.io/WGPUCore.jl/dev/)
[![Build Status](https://github.com/JuliaWGPU/WGPUCore.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaWGPU/WGPUCore.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/JuliaWGPU/WGPUCore.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaWGPU/WGPUCore.jl)

WGPU Native based graphics engine core

6 changes: 3 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ DocMeta.setdocmeta!(WGPUCore, :DocTestSetup, :(using WGPUCore); recursive=true)
makedocs(;
modules=[WGPUCore],
authors="arhik <[email protected]> and contributors",
repo="https://github.com/arhik/WGPUCore.jl/blob/{commit}{path}#{line}",
repo="https://github.com/JuliaWGPU/WGPUCore.jl/blob/{commit}{path}#{line}",
sitename="WGPUCore.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://arhik.github.io/WGPUCore.jl",
canonical="https://JuliaWGPU.github.io/WGPUCore.jl",
edit_link="main",
assets=String[],
),
Expand All @@ -20,6 +20,6 @@ makedocs(;
)

deploydocs(;
repo="github.com/arhik/WGPUCore.jl",
repo="github.com/JuliaWGPU/WGPUCore.jl",
devbranch="main",
)
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CurrentModule = WGPUCore

# WGPUCore

Documentation for [WGPUCore](https://github.com/arhik/WGPUCore.jl).
Documentation for [WGPUCore](https://github.com/JuliaWGPU/WGPUCore.jl).

```@index
```
Expand Down

2 comments on commit ebc21d4

@arhik
Copy link
Member Author

@arhik arhik commented on ebc21d4 Nov 15, 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/95354

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.1.4 -m "<description of version>" ebc21d41c772cfa1d95ec4b317dd8979d674dfe6
git push origin v0.1.4

Please sign in to comment.