Skip to content

Commit d1bd33f

Browse files
leifericfclaude
andcommitted
Prepare v1.0.0-beta5 release
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent fe53785 commit d1bd33f

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGES.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changes
22

3-
## Unreleased — API Consistency
3+
## v1.0.0-beta5 — API Consistency
44

55
### Breaking changes
66

@@ -220,6 +220,13 @@ directly using the migration examples below.
220220
(would crash at runtime after bounds packing change).
221221
- Fix missing `require` for `eido.color.palette` in `pack->colored-nodes`
222222
(pre-existing: used fully-qualified symbol without namespace require).
223+
- Fix Catmull-Clark edge point formula in `subdivide-once` — used
224+
`(midpoint + F1 + F2) / 3` instead of the correct
225+
`(v0 + v1 + F1 + F2) / 4`, producing subtly wrong vertex positions
226+
on asymmetric meshes.
227+
- Fix `geometry-bounds` for paths ignoring `:curve-to` and `:quad-to`
228+
endpoints — hatch, stipple, and procedural fills on curved paths
229+
(e.g. text outlines) could render at wrong size or position.
223230

224231
### Enhancements
225232

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ If it cannot be represented as plain data, it probably should not be in the libr
4545
Add eido as a git dependency in your `deps.edn`:
4646

4747
```clojure
48-
io.github.leifericf/eido {:git/tag "v1.0.0-beta4" :git/sha "b942c7f"}
48+
io.github.leifericf/eido {:git/tag "v1.0.0-beta5" :git/sha "fe53785"}
4949
```
5050

5151
## Quick Start

examples/site/pages.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
";; deps.edn
9797
{:deps
9898
{io.github.leifericf/eido
99-
{:git/tag \"v1.0.0-beta4\" :git/sha \"b942c7f\"}}}"]]
99+
{:git/tag \"v1.0.0-beta5\" :git/sha \"PLACEHOLDER\"}}}"]]
100100
[:h4 "2. Render your first image"]
101101
[:p "Start a REPL via Calva (\"Jack-in\"), then evaluate:"]
102102
[:pre [:code

resources/eido/version.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{:tag "v1.0.0-beta4" :sha "b942c7f"}
1+
{:tag "v1.0.0-beta5" :sha "PLACEHOLDER"}

0 commit comments

Comments
 (0)