Skip to content

Commit fd84902

Browse files
leifericfclaude
andcommitted
Update git SHAs for v1.0.0-beta5
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d1bd33f commit fd84902

3 files changed

Lines changed: 12 additions & 11 deletions

File tree

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,7 @@ If it cannot be represented as plain data, it probably should not be in the libr
4242

4343
## Installation
4444

45-
Add eido as a git dependency in your `deps.edn`:
46-
47-
```clojure
48-
io.github.leifericf/eido {:git/tag "v1.0.0-beta5" :git/sha "fe53785"}
49-
```
45+
See the **[Getting Started guide](https://eido.leifericf.com/guide/)** on the website.
5046

5147
## Quick Start
5248

examples/site/pages.clj

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
(ns site.pages
2-
"Static content for eido website pages — landing page, features, docs, architecture, workflows.")
2+
"Static content for eido website pages — landing page, features, docs, architecture, workflows."
3+
(:require
4+
[clojure.edn :as edn]
5+
[clojure.java.io :as io]))
6+
7+
(def ^:private eido-version
8+
(-> (io/resource "eido/version.edn") slurp edn/read-string))
39

410
;; --- Landing page ---
511

@@ -93,10 +99,9 @@
9399
[:h4 "1. Add Eido to your project"]
94100
[:p "Create a " [:code "deps.edn"] " file with Eido as a dependency:"]
95101
[:pre [:code
96-
";; deps.edn
97-
{:deps
98-
{io.github.leifericf/eido
99-
{:git/tag \"v1.0.0-beta5\" :git/sha \"PLACEHOLDER\"}}}"]]
102+
(str ";; deps.edn\n{:deps\n {io.github.leifericf/eido\n"
103+
" {:git/tag \"" (:tag eido-version)
104+
"\" :git/sha \"" (:sha eido-version) "\"}}}")]]
100105
[:h4 "2. Render your first image"]
101106
[:p "Start a REPL via Calva (\"Jack-in\"), then evaluate:"]
102107
[: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-beta5" :sha "PLACEHOLDER"}
1+
{:tag "v1.0.0-beta5" :sha "d1bd33f"}

0 commit comments

Comments
 (0)