Skip to content

Commit 31406d8

Browse files
authored
Merge pull request #10 from calcit-lang/file-entry
add FileEntry in snapshot
2 parents 25a5576 + 542e55e commit 31406d8

File tree

3 files changed

+12
-15
lines changed

3 files changed

+12
-15
lines changed

.github/workflows/check.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515

1616
- uses: supplypike/setup-bin@v3
1717
with:
18-
uri: 'https://github.com/calcit-lang/calcit/releases/download/0.8.0-a2/cr'
18+
uri: 'https://github.com/calcit-lang/calcit/releases/download/0.8.0-a3/cr'
1919
name: 'cr'
20-
version: '0.8.0-a2'
20+
version: '0.8.0-a3'
2121

2222
- uses: supplypike/setup-bin@v3
2323
with:
24-
uri: 'https://github.com/calcit-lang/calcit/releases/download/0.8.0-a2/caps'
24+
uri: 'https://github.com/calcit-lang/calcit/releases/download/0.8.0-a3/caps'
2525
name: 'caps'
26-
version: '0.8.0-a2'
26+
version: '0.8.0-a3'
2727

2828
- uses: dtolnay/rust-toolchain@stable
2929
with:

calcit.cirru

Lines changed: 4 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compact.cirru

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

22
{} (:package |http)
3-
:configs $ {} (:init-fn |http.test/main!) (:reload-fn |http.test/reload!) (:version |0.2.0)
3+
:configs $ {} (:init-fn |http.test/main!) (:reload-fn |http.test/reload!) (:version |0.3.0)
44
:modules $ []
55
:entries $ {}
66
:server $ {} (:init-fn |http.test/demo-server!) (:reload-fn |http.test/reload!)
77
:modules $ []
88
:files $ {}
9-
|http.core $ {}
9+
|http.core $ %{} :FileEntry
1010
:defs $ {}
1111
|serve-http! $ %{} :CodeEntry (:doc |)
1212
:code $ quote
@@ -17,7 +17,7 @@
1717
ns http.core $ :require
1818
http.$meta :refer $ calcit-dirname
1919
http.util :refer $ get-dylib-path
20-
|http.test $ {}
20+
|http.test $ %{} :FileEntry
2121
:defs $ {}
2222
|demo-server! $ %{} :CodeEntry (:doc |)
2323
:code $ quote
@@ -49,7 +49,7 @@
4949
ns http.test $ :require
5050
http.core :refer $ serve-http!
5151
http.$meta :refer $ calcit-dirname calcit-filename
52-
|http.util $ {}
52+
|http.util $ %{} :FileEntry
5353
:defs $ {}
5454
|get-dylib-ext $ %{} :CodeEntry (:doc |)
5555
:code $ quote

0 commit comments

Comments
 (0)