Skip to content

Commit da3b923

Browse files
committed
0.2.0
1 parent 4fc1daa commit da3b923

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# vend
22

3-
## Unreleased
3+
## 0.2.0 (2025-05-13)
44

55
#### Added
66

README.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Just vendor your dependencies!
1111
- =vend get= to fetch dependencies directly into your project.
1212
- =vend repl= to open an isolated Lisp session.
1313
- =vend test= to run all your test suites.
14-
- =vend= only has 3 dependencies itself and compiles to a 300kb binary.
14+
- =vend= only has 3 dependencies itself and compiles to a 400kb binary.
1515
- Neither Quicklisp (the tool) nor Quicklisp (the repository) are used.
1616
- Trivial integration with Sly / Slime / Lem / Slimv.
1717

src/vend.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ Flags:
188188

189189
(defconstant +vend-rules+
190190
'((("--help" "-h") 0 (vend/help))
191-
("--version" 0 (format t "0.1.5~%"))
191+
("--version" 0 (format t "0.2.0~%"))
192192
("check" 1 (vend/check :focus (cadr 1)) :stop)
193193
("get" 0 (vend/get))
194194
("graph" 1 (vend/graph :focus (cadr 1)) :stop)

vend.asd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(defsystem "vend"
2-
:version "0.1.5"
2+
:version "0.2.0"
33
:author "Colin Woodbury <[email protected]>"
44
:license "MPL-2.0"
55
:homepage "https://github.com/fosskers/vend"

0 commit comments

Comments
 (0)