commit a40d717997673b23bb7d957da5ab81ddabe0de73
parent 88c10eaef29bce4f3c84cc793debb451e2e0f0e9
Author: Erik Loualiche <[email protected]>
Date: Sat, 14 Mar 2026 01:40:38 -0500
Rename repo to NickelEval.jl to follow Julia naming convention
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Diffstat:
7 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/Artifacts.toml b/Artifacts.toml
@@ -1,6 +1,6 @@
# Pre-built FFI library binaries
# Built by GitHub Actions: .github/workflows/build-ffi.yml
-# Release: https://github.com/LouLouLibs/NickelEval/releases/tag/v0.5.0
+# Release: https://github.com/LouLouLibs/NickelEval.jl/releases/tag/v0.5.0
# macOS Apple Silicon (aarch64)
[[libnickel_jl]]
@@ -10,7 +10,7 @@ os = "macos"
lazy = true
[[libnickel_jl.download]]
- url = "https://github.com/LouLouLibs/NickelEval/releases/download/v0.5.0/libnickel_jl-aarch64-apple-darwin.tar.gz"
+ url = "https://github.com/LouLouLibs/NickelEval.jl/releases/download/v0.5.0/libnickel_jl-aarch64-apple-darwin.tar.gz"
sha256 = "9f6f6fb4336221a10d7445caf5abad4980e71c92d55bfdbf7a402fbd76cddaa1"
# macOS Intel (x86_64)
@@ -21,7 +21,7 @@ os = "macos"
lazy = true
[[libnickel_jl.download]]
- url = "https://github.com/LouLouLibs/NickelEval/releases/download/v0.5.0/libnickel_jl-x86_64-apple-darwin.tar.gz"
+ url = "https://github.com/LouLouLibs/NickelEval.jl/releases/download/v0.5.0/libnickel_jl-x86_64-apple-darwin.tar.gz"
sha256 = "e2a93fe247286efa553c2e5ce5d2cce01fc591741b3ae730c12f708f6dfc9857"
# Linux x86_64
@@ -32,7 +32,7 @@ os = "linux"
lazy = true
[[libnickel_jl.download]]
- url = "https://github.com/LouLouLibs/NickelEval/releases/download/v0.5.0/libnickel_jl-x86_64-linux-gnu.tar.gz"
+ url = "https://github.com/LouLouLibs/NickelEval.jl/releases/download/v0.5.0/libnickel_jl-x86_64-linux-gnu.tar.gz"
sha256 = "2ca510ee4ac8df02ed04d510a00c8d986098fdc2a75af1bb6d3e7b16eff11aeb"
# Windows x86_64
@@ -43,5 +43,5 @@ os = "windows"
lazy = true
[[libnickel_jl.download]]
- url = "https://github.com/LouLouLibs/NickelEval/releases/download/v0.5.0/nickel_jl-x86_64-windows.tar.gz"
+ url = "https://github.com/LouLouLibs/NickelEval.jl/releases/download/v0.5.0/nickel_jl-x86_64-windows.tar.gz"
sha256 = "c1279f0b3fe202b366acf7a635f3c6da59704bab49470619e8f5d91267241fe7"
diff --git a/CLAUDE.md b/CLAUDE.md
@@ -96,7 +96,7 @@ julia --project=. -e 'using Pkg; Pkg.test()'
```bash
# Check CI status before tagging
-gh run list --repo LouLouLibs/NickelEval --limit 5
+gh run list --repo LouLouLibs/NickelEval.jl --limit 5
# All workflows should show "success" before proceeding with:
git tag -a vX.Y.Z -m "vX.Y.Z: Description"
@@ -147,7 +147,7 @@ os = "macos"
lazy = true
[[libnickel_jl.download]]
- url = "https://github.com/LouLouLibs/NickelEval/releases/download/vX.Y.Z/libnickel_jl-aarch64-apple-darwin.tar.gz"
+ url = "https://github.com/LouLouLibs/NickelEval.jl/releases/download/vX.Y.Z/libnickel_jl-aarch64-apple-darwin.tar.gz"
sha256 = "SHA256_HASH_HERE"
```
diff --git a/README.md b/README.md
@@ -18,7 +18,7 @@ Pkg.add("NickelEval")
```julia
using Pkg
-Pkg.add(url="https://github.com/LouLouLibs/NickelEval")
+Pkg.add(url="https://github.com/LouLouLibs/NickelEval.jl")
```
**Prerequisite:** Install the Nickel CLI from https://nickel-lang.org/
diff --git a/TODO.md b/TODO.md
@@ -97,4 +97,4 @@ nickel_eval_native("'Some 42") # => NickelEnum(:Some, 42)
**Registry:** loulouJL (https://github.com/LouLouLibs/loulouJL)
**Docs:** https://louloulibs.github.io/NickelEval/dev/
-**Repo:** https://github.com/LouLouLibs/NickelEval
+**Repo:** https://github.com/LouLouLibs/NickelEval.jl
diff --git a/docs/make.jl b/docs/make.jl
@@ -6,9 +6,9 @@ using DocumenterVitepress
makedocs(
format = MarkdownVitepress(
- repo = "https://github.com/LouLouLibs/NickelEval",
+ repo = "https://github.com/LouLouLibs/NickelEval.jl",
),
- repo = Remotes.GitHub("LouLouLibs", "NickelEval"),
+ repo = Remotes.GitHub("LouLouLibs", "NickelEval.jl"),
sitename = "NickelEval.jl",
modules = [NickelEval],
authors = "LouLouLibs Contributors",
@@ -27,7 +27,7 @@ makedocs(
)
DocumenterVitepress.deploydocs(;
- repo = "github.com/LouLouLibs/NickelEval",
+ repo = "github.com/LouLouLibs/NickelEval.jl",
target = "build",
devbranch = "main",
branch = "gh-pages",
diff --git a/docs/src/index.md b/docs/src/index.md
@@ -24,7 +24,7 @@ Pkg.add("NickelEval")
```julia
using Pkg
-Pkg.add(url="https://github.com/LouLouLibs/NickelEval")
+Pkg.add(url="https://github.com/LouLouLibs/NickelEval.jl")
```
**Prerequisite:** Install the Nickel CLI from [nickel-lang.org](https://nickel-lang.org/)
diff --git a/docs/src/man/quickstart.md b/docs/src/man/quickstart.md
@@ -14,7 +14,7 @@ Pkg.add("NickelEval")
```julia
using Pkg
-Pkg.add(url="https://github.com/LouLouLibs/NickelEval")
+Pkg.add(url="https://github.com/LouLouLibs/NickelEval.jl")
```
Make sure you have the Nickel CLI installed: