From 63af2bc32b25fd17ee28ec26ff961527902e1a23 Mon Sep 17 00:00:00 2001 From: Eitaro Fukamachi Date: Mon, 18 Mar 2019 19:00:25 +0900 Subject: [PATCH] v0.9.0 (BETA) --- README.markdown | 4 ++-- rove.asd | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.markdown b/README.markdown index 65bbc87..57d850c 100644 --- a/README.markdown +++ b/README.markdown @@ -6,11 +6,11 @@ Rove is a unit testing framework for Common Lisp applications. This is intended ## Warning -This software is still ALPHA quality. The APIs will be likely to change. +This software is still BETA quality. The APIs will be likely to change. ## Differences from Prove -* Supports ASDF's package-inferred-system +* Supports ASDF package-inferred-system * Fewer dependencies (Only depends on Trivial-Gray-Streams and UIOP) * Reports details of failure tests * Thread-support diff --git a/rove.asd b/rove.asd index fd7d5b3..219ae39 100644 --- a/rove.asd +++ b/rove.asd @@ -1,7 +1,7 @@ (defsystem "rove" :class :package-inferred-system - :version "0.1.0" + :version "0.9.0" :author "Eitaro Fukamachi" :license "BSD 3-Clause" :depends-on ("rove/main") - :description "Small testing framework") + :description "Yet another testing framework intended to be a successor of Prove")