Skip to content

Commit

Permalink
Change JuliaSyntaxHighlighting UUID (#56852)
Browse files Browse the repository at this point in the history
TLDR; I made a silly mistake a while back, and this seems like the least
bad option.

-----

Unfortunately during development of the backported version of this
stdlib, to avoid potential sysimage issues the UUID was temporarilly
changed and I forgot to change it back.

This mistake lead to the backport/compat verison of the package having a
different UUID from the in-tree stdlib. Beyond this being an embarassing
mistake, it's also a pain because it means that we now have
incorrect/invalid manifests.

A small mercy is that 1.12 hasn't been released yet, so the discrepancy
currently only affects people using development Julia versions. Changing
the UUID here will require these people to regenerate their manifests,
but this seems like the lesser of two evils.

Appologies for the hassle all.

Co-authored-by: Chengyu Han <cyhan.dev@outlook.com>
  • Loading branch information
tecosaur and inkydragon authored Jan 29, 2025
1 parent e65af91 commit c172a64
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 8 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
73d1db780528e93c4b756a2182bacfc2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a994a3a9af8188f4c5985b91c8dc3e449b101eb4e56c4f9bccd69a528bd13fa919cc0cd39f101afa3d4245ad3b8e6691ca539969fefa0868e4b1f256d6ffa49e
2 changes: 1 addition & 1 deletion doc/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ version = "0.21.4"

[[deps.JuliaSyntaxHighlighting]]
deps = ["StyledStrings"]
uuid = "dc6e5ff7-fb65-4e79-a425-ec3bc9c03011"
uuid = "ac6e5ff7-fb65-4e79-a425-ec3bc9c03011"
version = "1.12.0"

[[deps.LazilyInitializedFields]]
Expand Down
2 changes: 1 addition & 1 deletion stdlib/JuliaSyntaxHighlighting.version
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
JULIASYNTAXHIGHLIGHTING_BRANCH = main
JULIASYNTAXHIGHLIGHTING_SHA1 = 19bd57b89c648592155156049addf67e0638eab1
JULIASYNTAXHIGHLIGHTING_SHA1 = eb8097c5f1dbfca80b5e6664af031ff1fe0904af
JULIASYNTAXHIGHLIGHTING_GIT_URL := https://github.com/julialang/JuliaSyntaxHighlighting.jl.git
JULIASYNTAXHIGHLIGHTING_TAR_URL = https://api.github.com/repos/julialang/JuliaSyntaxHighlighting.jl/tarball/$1
2 changes: 1 addition & 1 deletion stdlib/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ version = "1.11.0"

[[deps.JuliaSyntaxHighlighting]]
deps = ["StyledStrings"]
uuid = "dc6e5ff7-fb65-4e79-a425-ec3bc9c03011"
uuid = "ac6e5ff7-fb65-4e79-a425-ec3bc9c03011"
version = "1.12.0"

[[deps.LLD_jll]]
Expand Down
2 changes: 1 addition & 1 deletion stdlib/Markdown/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "1.11.0"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
JuliaSyntaxHighlighting = "dc6e5ff7-fb65-4e79-a425-ec3bc9c03011"
JuliaSyntaxHighlighting = "ac6e5ff7-fb65-4e79-a425-ec3bc9c03011"
StyledStrings = "f489334b-da3d-4c2e-b8f0-e476e12c162b"

[extras]
Expand Down
2 changes: 1 addition & 1 deletion stdlib/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ FileWatching = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee"
Future = "9fa8497b-333b-5362-9e8d-4d0656e87820"
GMP_jll = "781609d7-10c4-51f6-84f2-b8444358ff6d"
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
JuliaSyntaxHighlighting = "dc6e5ff7-fb65-4e79-a425-ec3bc9c03011"
JuliaSyntaxHighlighting = "ac6e5ff7-fb65-4e79-a425-ec3bc9c03011"
LLD_jll = "d55e3150-da41-5e91-b323-ecfd1eec6109"
LLVMLibUnwind_jll = "47c5dbc3-30ba-59ef-96a6-123e260183d9"
LazyArtifacts = "4af54fe1-eca0-43a8-85a7-787d91b784e3"
Expand Down
2 changes: 1 addition & 1 deletion stdlib/REPL/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "1.11.0"

[deps]
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
JuliaSyntaxHighlighting = "dc6e5ff7-fb65-4e79-a425-ec3bc9c03011"
JuliaSyntaxHighlighting = "ac6e5ff7-fb65-4e79-a425-ec3bc9c03011"
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
StyledStrings = "f489334b-da3d-4c2e-b8f0-e476e12c162b"
Expand Down

0 comments on commit c172a64

Please sign in to comment.