From 4c028d88e139325db90624f0d386ec1f4751c974 Mon Sep 17 00:00:00 2001 From: Carl Gay Date: Thu, 28 Nov 2024 10:23:50 -0500 Subject: [PATCH 1/3] tests: don't bother with suites; just run all tests --- tests/command-interface-test.dylan | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/command-interface-test.dylan b/tests/command-interface-test.dylan index 8d17925..30f31a6 100644 --- a/tests/command-interface-test.dylan +++ b/tests/command-interface-test.dylan @@ -100,8 +100,4 @@ define test command-tokenizer-test() #(0, 2, 3, 5, 7, 9, 10)); end; -define suite command-interface-test-suite() - test command-tokenizer-test; -end; - -run-test-application(command-interface-test-suite); +run-test-application(); From 387b30789399e0e9ea7d85f58b06a3887830a0af Mon Sep 17 00:00:00 2001 From: Carl Gay Date: Thu, 28 Nov 2024 10:24:23 -0500 Subject: [PATCH 2/3] README: dylan -> deft --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index f06eec7..37a89e7 100644 --- a/README.rst +++ b/README.rst @@ -26,11 +26,11 @@ Compiling Update library dependencies:: - dylan update + deft update Build the library, tests and demo with:: - dylan build --all + deft build --all Run the demo:: From d6405402a22468ef5e54b02ed622dbb011e67ad1 Mon Sep 17 00:00:00 2001 From: Carl Gay Date: Thu, 28 Nov 2024 10:24:37 -0500 Subject: [PATCH 3/3] package: update version to 0.1.3 for new release Need this release to get the doc changes into package.opendylan.org so command-interface uses the same style as all the other packages. --- dylan-package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dylan-package.json b/dylan-package.json index fd8d78b..825f030 100644 --- a/dylan-package.json +++ b/dylan-package.json @@ -1,8 +1,8 @@ { "name": "command-interface", - "description": "Interactive command interface system for Dylan", + "description": "Interactive command interface system", "keywords": [ "command-line" ], - "version": "0.1.2", + "version": "0.1.3", "url": "https://github.com/dylan-lang/command-interface", "category" : "utilities", "contact": "dylan-lang@googlegroups.com",