Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2407d53

Browse files
asinghvi17ffreyer
andauthoredNov 18, 2024··
Bump version to 0.5 (breaking version) (#226)
* Bump version to 0.5 (breaking version) * add version bump prs in dependencies for CI * skip RadeonProRender * also need ShaderAbstractions --------- Co-authored-by: Frederic Freyer <frederic481994@hotmail.de>
1 parent 81a20c0 commit 2407d53

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
 

‎.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,10 @@ jobs:
5353
DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --project=docs -e '
5454
using Pkg
5555
Pkg.develop(PackageSpec(path=pwd()))
56-
pkg"add MeshIO#ff/GeometryBasics_refactor MakieCore#breaking-0.22 Makie#breaking-0.22 GLMakie#breaking-0.22"
56+
pkg"add https://github.com/ffreyer/FreeTypeAbstraction.jl.git#ff/GeometryBasics_refactor"
57+
pkg"add https://github.com/ffreyer/GridLayoutBase.jl.git#ff/GeometryBasic_refactor"
58+
pkg"add https://github.com/ffreyer/Packing.jl.git#ff/GeometryBasics_refactor"
59+
pkg"add MeshIO#ff/GeometryBasics_refactor ShaderAbstractions#ff/GeometryBasics_refactor MakieCore#breaking-0.22 Makie#breaking-0.22 GLMakie#breaking-0.22 "
5760
Pkg.instantiate()'
5861
- run: DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --project=docs docs/make.jl
5962
env:

‎Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "GeometryBasics"
22
uuid = "5c1252a2-5f33-56bf-86c9-59e7332b4326"
33
authors = ["SimonDanisch <sdanisch@gmail.com>"]
4-
version = "0.4.11"
4+
version = "0.5.0"
55

66
[deps]
77
EarCut_jll = "5ae413db-bbd1-5e63-b57d-d24a61df00f5"

2 commit comments

Comments
 (2)

ffreyer commented on Nov 18, 2024

@ffreyer
Collaborator

JuliaRegistrator commented on Nov 18, 2024

@JuliaRegistrator

Registration pull request created: JuliaRegistries/General/119690

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.5.0 -m "<description of version>" 2407d536c277c06cf24f98def0a48f7624f07a3c
git push origin v0.5.0
Please sign in to comment.