Skip to content

Commit

Permalink
Move version to it's own file
Browse files Browse the repository at this point in the history
  • Loading branch information
tizoc committed Dec 13, 2020
1 parent 01268f6 commit 93c40da
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions scripts/build.shen
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@
(if (not initialized)
(begin
(define-top-level-value 'get-shen-scheme-home-path (foreign-procedure c#34;get_shen_scheme_home_pathc#34; () string))
(include c#34;src/version.scmc#34;)
(include c#34;src/init.scmc#34;)
(include c#34;compiled/shen-scheme-init.scmc#34;)
(set! initialized #t))))))
Expand Down
1 change: 0 additions & 1 deletion src/init.scm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

(kl:set '*language* "Scheme")
(kl:set '*implementation* "chez-scheme")
(kl:set '*port* "0.22")
(kl:set '*release* (call-with-values scheme-version-number (lambda (major minor patch) (format "~s.~s.~s" major minor patch))))
(kl:set '*porters* "Bruno Deferrari")
(kl:set '*home-directory* (current-directory))
Expand Down
1 change: 1 addition & 0 deletions src/version.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(kl:set '*port* "0.22")

0 comments on commit 93c40da

Please sign in to comment.