Skip to content

Commit 7e163db

Browse files
committed
Merge branch 'trampolines'
of github.com:clasp-developers/clasp into trampolines
2 parents 1398b2b + fdb731a commit 7e163db

5 files changed

Lines changed: 11 additions & 5 deletions

File tree

RELEASE_NOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Version 3.0.1 (LLVM15-20, 22) 2026-06-24
2+
3+
## Fixed
4+
* Fixes the archive tarball which was broken for 3.0.0. Thanks @fosskers for noticing.
5+
* Archive mechanism now properly uses the pinned commits rather than git branches.
6+
17
# Version 3.0.0 (LLVM15-20, 22) 2026-06-18
28

39
## Added

debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
clasp-cl (3.0.0) bookworm jammy; urgency=medium
1+
clasp-cl (3.0.1) bookworm jammy; urgency=medium
22

33
* Initial release
44

repos.sexp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@
423423
:commit "df07d50bbc71c32a6ca62ce062f66e11011945e9"
424424
:pin 1)
425425
(:name :trivial-package-local-nicknames
426-
:directory "src/lisp/kernel/contrib/trivial-package-local-nicknames"
426+
:directory "src/lisp/kernel/contrib/trivial-package-local-nicknames/"
427427
:repository "https://github.com/phoe/trivial-package-local-nicknames.git"
428428
:branch "master"
429429
:commit "8a4d09c1c5cb2b5349aecbd796164433df7a6cc5"

src/koga/archive.lisp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
(run-program (format nil "git archive --output=~a --format=tar --prefix=~a~a ~a"
3333
temp-path prefix directory
3434
(if tag
35-
(or (getf source :branch)
36-
(getf source :commit))
35+
(or (getf source :commit)
36+
(getf source :branch))
3737
"HEAD"))
3838
:directory directory)
3939
(run-program (format nil "tar --concatenate --file ~a ~a"

version.sexp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
(:version "3.0.0")
1+
(:version "3.0.1")

0 commit comments

Comments
 (0)