Skip to content

Commit 0ebf4d2

Browse files
authored
Merge pull request #5 from dylan-lang/dev
Cleanups
2 parents 31e8703 + c3250c2 commit 0ebf4d2

File tree

8 files changed

+15
-28
lines changed

8 files changed

+15
-28
lines changed

anaphora.lid

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
library: anaphora
22
files: library
33
anaphora
4+
Target-type: dll

documentation/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = 'Anaphora'
1010
copyright = '2024, Dylan Hackers'
1111
author = 'Dylan Hackers'
12-
release = '0.1.1'
12+
release = '0.2.0'
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

documentation/source/index.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
Welcome to Anaphora's documentation!
2-
====================================
1+
Anaphora
2+
========
33

44
.. toctree::
55
:hidden:
66
:maxdepth: 2
7-
7+
88
reference
99

10-
This library provides anaphoric constructs macros for Dylan, but
11-
what's an anaphoric macro?
10+
This library provides anaphoric macros for Dylan, but what's an anaphoric macro?
1211

1312
From `Wikipedia
1413
<https://en.wikipedia.org/w/index.php?title=Anaphoric_macro&oldid=1066643579>`_:

dylan-package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
{
22
"category" : "utilities",
33
"dependencies": [],
4-
"dev-dependencies": [ "testworks" ],
4+
"dev-dependencies": [
5+
"sphinx-extensions",
6+
"testworks"
7+
],
58
"description": "Anaphoric constructs",
69
"name": "anaphora",
7-
"version": "0.1.1",
10+
"version": "0.2.0",
811
"url": "https://github.com/dylan-lang/anaphora",
912
"keywords": [ "macro", "lisp", "anaphora" ],
1013
"contact": "[email protected]",

library.dylan

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module: dylan-user
22
33
define library anaphora
4-
use common-dylan;
4+
use dylan;
55
export anaphora;
66
end library;
77

88
define module anaphora
9-
use common-dylan;
10-
export \aif;
9+
use dylan;
10+
export aif;
1111
end module;

tests/anaphora-test.dylan

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,4 @@ define test test-aif-on-failure-if-else ()
4646
expect-equal("Failed!", result)
4747
end test;
4848

49-
define suite aif-test-suite ()
50-
test test-aif-on-success-if;
51-
test test-aif-on-success-if-else;
52-
test test-aif-on-failure-if;
53-
test test-aif-on-failure-if-else;
54-
end suite;
55-
56-
define suite anaphora-test-suite ()
57-
suite aif-test-suite;
58-
end suite;
59-
6049
run-test-application();

tests/anaphora-test.lid

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
Library: anaphora-test
22
Files: library
33
anaphora-test
4+
Target-type: executable

tests/library.dylan

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,10 @@ define library anaphora-test
44
use common-dylan;
55
use testworks;
66
use anaphora;
7-
8-
export anaphora-tests;
97
end library anaphora-test;
108

119
define module anaphora-test
1210
use common-dylan;
1311
use testworks;
1412
use anaphora;
15-
16-
export
17-
anaphora-test-suite,
18-
aif-test-suite;
1913
end module anaphora-test;

0 commit comments

Comments
 (0)