File: changelog

package info (click to toggle)
cl-sql 6.7.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 3,580 kB
  • sloc: lisp: 24,508; xml: 17,898; makefile: 500; ansic: 201; sh: 39; cpp: 9
file content (1906 lines) | stat: -rw-r--r-- 47,197 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
cl-sql (6.7.0-1.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Switch (Build-)Depends to default-libmysqlclient-dev.  (Closes: #845830)

 -- Andreas Beckmann <anbe@debian.org>  Tue, 17 Jan 2017 00:29:15 +0100

cl-sql (6.7.0-1) unstable; urgency=medium

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 26 Jan 2016 14:40:50 -0700

cl-sql (6.6.3-3) unstable; urgency=medium

  * debian/rules: Separate install target to install-indep and
    install-arch (closes:806609)

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 10 Dec 2015 12:35:59 -0700

cl-sql (6.6.3-2) unstable; urgency=medium

  * Improve building/linking on non-AMD64 architectures, thanks to
  Edmund Grimley Evans and Dejan Latinovic (closes:798017)

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 10 Dec 2015 12:10:32 -0700

cl-sql (6.6.3-1) unstable; urgency=medium

  * New upstream
  * Use gcc for linking (closes:755064)

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 29 Aug 2015 18:13:55 -0600

cl-sql (6.6.2-1) unstable; urgency=medium

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 30 Mar 2015 14:46:53 -0600

cl-sql (6.6.1-1) unstable; urgency=medium

  * {uffi,db-mysql}/Makefile: Change build hardening to +all,-pie

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 18 Mar 2015 21:30:11 -0600

cl-sql (6.6.0-1) unstable; urgency=medium

  * New upstream
  * {uffi,db-mysql}/Makefile: Add build hardening

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 26 Feb 2015 15:32:46 -0700

cl-sql (6.5.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 04 Mar 2014 10:10:27 -0700

cl-sql (6.4.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 18 Apr 2013 11:21:25 -0600

cl-sql (6.4.0-1) unstable; urgency=low

  * New release

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 19 Dec 2012 10:01:33 -0700

cl-sql (6.3.0-1) unstable; urgency=low

  * New release

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 04 Sep 2012 16:58:17 -0600

cl-sql (6.2.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 26 Apr 2012 10:05:22 -0600

cl-sql (6.1.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 20 Dec 2011 19:58:29 -0700

cl-sql (6.1.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 19 Dec 2011 10:13:58 -0700

cl-sql (6.0.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 21 Sep 2011 10:57:59 -0600

cl-sql (6.0.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 03 Aug 2011 08:47:58 -0600

cl-sql (5.4.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 16 Jul 2011 09:13:15 -0600

cl-sql (5.3.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 20 Jun 2011 13:20:12 -0600

cl-sql (5.3.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 12 Jun 2011 09:49:33 -0600

cl-sql (5.3.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 01 Apr 2011 12:08:02 -0600

cl-sql (5.3.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 30 Mar 2011 23:32:06 -0600

cl-sql (5.3.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 29 Mar 2011 18:25:13 -0600

cl-sql (5.2.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 07 Nov 2010 09:47:02 -0700

cl-sql (5.1.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 20 Sep 2010 21:56:46 -0600

cl-sql (5.1.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 16 Aug 2010 16:29:09 -0600

cl-sql (5.1.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 16 Aug 2010 11:27:41 -0600

cl-sql (5.1.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 15 May 2010 15:20:38 -0600

cl-sql (5.1.0-1) unstable; urgency=low

  * New upstream - depends on UFFI 2.x

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 20 Apr 2010 12:37:13 -0600

cl-sql (5.0.6-1) unstable; urgency=low

  * New upstream
  * Switch to dpkg-source 3.0 (quilt) format

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 16 Apr 2010 00:44:41 -0600

cl-sql (5.0.5-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 21 Mar 2010 01:11:20 -0600

cl-sql (5.0.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 17 Feb 2010 10:02:14 -0700

cl-sql (5.0.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 11 Feb 2010 15:18:04 -0700

cl-sql (5.0.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 08 Feb 2010 16:18:52 -0700

cl-sql (5.0.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 07 Feb 2010 22:34:13 -0700

cl-sql (5.0.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 07 Feb 2010 02:48:20 -0700

cl-sql (4.3.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 29 Jan 2010 16:48:24 -0700

cl-sql (4.3.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 28 Jan 2010 18:36:06 -0700

cl-sql (4.3.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 28 Jan 2010 15:10:11 -0700

cl-sql (4.3.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 07 Jan 2010 11:03:33 -0700

cl-sql (4.2.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 10 Dec 2009 17:03:31 -0700

cl-sql (4.1.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 12 Nov 2009 00:41:04 -0700

cl-sql (4.1.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 04 Sep 2009 13:02:14 -0600

cl-sql (4.1.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 31 Aug 2009 22:43:56 -0600

cl-sql (4.0.6-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 31 Aug 2009 14:36:30 -0600

cl-sql (4.0.5-5) unstable; urgency=low

  * debian/rules: Fix bug introduced by change to dh-lisp (closes:540816)
  
 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 10 Aug 2009 10:05:16 -0600

cl-sql (4.0.5-4) unstable; urgency=low

  * debian/control:
    - Add Vcs-Browser field
    - Convert to dh-lisp
  * debian/rules:
    - Simplify install rules utilizing more debhelper functions
    - Convert to dh-lisp

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 04 Aug 2009 02:21:14 -0600

cl-sql (4.0.5-3) unstable; urgency=low

  * control: Update debhelper compat to 7, add Homepage and Vgs-Git
  fields.
  * rules: update to DH 7 compatible

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 02 Aug 2009 00:21:45 -0600

cl-sql (4.0.5-2) unstable; urgency=low

  * Change section from devel to lisp
  * Update debhelper compat version to 5
  
 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 26 Jul 2009 20:28:14 -0600

cl-sql (4.0.5-1) unstable; urgency=low

  * New upstream version
  * Change build dependency to be independent of libmysqlclient version
  (closes:538459)

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 26 Jul 2009 17:30:19 -0600

cl-sql (4.0.4-1) unstable; urgency=low

  * Update Oracle FFI based on changes in CLSQL. Thanks to Paul
  Metcalfe, Liam Healy, and Alan Salewski (closes:481029)

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 07 Mar 2009 13:32:00 -0700

cl-sql (4.0.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 11 Dec 2007 18:14:13 -0700

cl-sql (4.0.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 23 Oct 2007 08:01:21 -0600

cl-sql (4.0.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 17 Sep 2007 08:53:42 -0600

cl-sql (4.0.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 14 Sep 2007 11:55:03 -0600

cl-sql (3.8.6.1-4) unstable; urgency=low

  * make package binNMU safe (closes:435968)

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 28 Aug 2007 08:40:23 -0600

cl-sql (3.8.6.1-3) unstable; urgency=low

  * debian/control: actually use the binary:Version for any-to-any dependencies
  (closes:434812)

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 26 Jul 2007 16:55:29 -0600

cl-sql (3.8.6.1-2) unstable; urgency=low

  * debian/control: Tighten version dependencies. Convert source:Version to
  binary:Version for any-to-any dependencies. Revert changes in 3.8.6.1-1
  (closes:434358)

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 23 Jul 2007 11:59:21 -0600

cl-sql (3.8.6.1-1) unstable; urgency=low

  * debian/control: Change architecture of binary packages which
  depend on cl-sql-uffi from 'all' to 'any' since cl-sql-uffi is 'any'.
  Without this change, packages which depend on cl-sql-uffi can become
  uninstallable if the autobuilder fails to build the 'any' cl-sql-uffi
  and the dependant 'all' package gets upgraded. (closes: 433907)

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 22 Jul 2007 11:37:13 -0600

cl-sql (3.8.6-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 20 Jul 2007 17:17:32 -0600

cl-sql (3.8.5-2) unstable; urgency=low

  * debian/watch: New version

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 18 Jul 2007 20:26:08 -0600

cl-sql (3.8.5-1) unstable; urgency=low

  * debian/control: Add libmysqlclient15-dev as dependency for cl-sql-mysql
    since clsql-mysql modules depends on finding the .so files to load

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 16 Jul 2007 02:16:22 -0600

cl-sql (3.8.4-2) unstable; urgency=low

  * debian/control: Change from ${Source-Version} to ${source:Version}

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 22 Jun 2007 11:00:14 -0600

cl-sql (3.8.4-1) unstable; urgency=low

  * Don't load libmysqlclient.so. This is automatically loaded
    when loading clsql_uffi.so. Closes: #427875

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 22 Jun 2007 10:54:33 -0600

cl-sql (3.8.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 25 Apr 2007 12:14:05 -0600

cl-sql (3.8.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 23 Mar 2007 07:37:15 -0600

cl-sql (3.8.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 26 Jan 2007 08:30:28 -0700

cl-sql (3.8.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 30 Dec 2006 18:28:40 -0700

cl-sql (3.7.9-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 30 Dec 2006 14:36:03 -0700

cl-sql (3.7.8-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 30 Nov 2006 20:09:12 -0700

cl-sql (3.7.7-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 16 Oct 2006 13:35:28 -0600

cl-sql (3.7.6-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 16 Oct 2006 13:24:00 -0600

cl-sql (3.7.5-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 16 Oct 2006 13:05:53 -0600

cl-sql (3.7.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  3 Oct 2006 05:01:09 -0600

cl-sql (3.7.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 02 Oct 2006 23:05:55 -0600

cl-sql (3.7.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 20 Sep 2006 21:24:22 -0600

cl-sql (3.7.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon,  4 Sep 2006 21:17:05 -0600

cl-sql (3.7.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 30 Aug 2006 04:03:18 -0600

cl-sql (3.6.7-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 29 Aug 2006 09:04:41 -0600

cl-sql (3.6.6-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 14 Aug 2006 00:53:43 -0600

cl-sql (3.6.5-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 12 Aug 2006 15:18:47 -0600

cl-sql (3.6.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 12 Aug 2006 10:18:05 -0600

cl-sql (3.6.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  7 Jul 2006 13:00:59 -0600

cl-sql (3.6.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  4 Jul 2006 19:28:44 -0600

cl-sql (3.6.1-1) unstable; urgency=low

  * New upstream, add documentation for db-reader and
  verified correct operation with symbol-function of symbol
  (closes: 352567)

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 15 May 2006 21:07:47 -0600

cl-sql (3.6.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  9 May 2006 09:41:58 -0600

cl-sql (3.5.7-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  3 May 2006 07:50:05 -0600

cl-sql (3.5.6-3) unstable; urgency=low

  * Rebuild to update library dependencies (closes: 361849)
  * Rebuild for m68k gcc change (closes: 359273)

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 11 Apr 2006 16:53:14 -0600

cl-sql (3.5.6-2) unstable; urgency=low

  * Update dependencies (closes: 358631)

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 23 Mar 2006 10:10:07 -0700

cl-sql (3.5.6-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 20 Mar 2006 19:45:36 -0700

cl-sql (3.5.5-1) unstable; urgency=low

  * Add GNU uname (closes: 355919)

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  8 Mar 2006 12:07:27 -0700

cl-sql (3.5.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 28 Feb 2006 08:48:40 -0700

cl-sql (3.5.3-1) unstable; urgency=low

  * New upstream
  * Really commit patch for GNU/kFreeBSD (closes: 345219)

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 16 Jan 2006 14:43:55 -0700

cl-sql (3.5.2-2) unstable; urgency=low

  * Commit patch for GNU/kFreeBSD (closes: 345219)

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 31 Dec 2005 11:14:04 -0700

cl-sql (3.5.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 23 Dec 2005 03:46:59 -0700

cl-sql (3.5.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  2 Dec 2005 08:19:30 -0700

cl-sql (3.5.0-1) unstable; urgency=low

  * New upstream (closes: 339842)
  * Change libmyclient run-time requirement (closes: 339824)

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 26 Nov 2005 08:58:22 -0700

cl-sql (3.4.7-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 25 Nov 2005 10:41:34 -0700

cl-sql (3.4.6-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 16 Nov 2005 00:57:49 -0700

cl-sql (3.4.5-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 15 Nov 2005 23:42:20 -0700

cl-sql (3.4.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 14 Nov 2005 19:41:24 -0700

cl-sql (3.4.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 13 Nov 2005 02:11:25 -0700

cl-sql (3.4.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 12 Nov 2005 10:44:37 -0700

cl-sql (3.4.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 11 Nov 2005 09:24:48 -0700

cl-sql (3.4.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 10 Nov 2005 15:17:40 -0700

cl-sql (3.3.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  4 Nov 2005 12:22:18 -0700

cl-sql (3.3.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 30 Oct 2005 21:20:34 -0700

cl-sql (3.3.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 25 Oct 2005 11:43:31 -0600

cl-sql (3.3.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 25 Oct 2005 10:16:34 -0600

cl-sql (3.3.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 17 Sep 2005 19:28:58 -0600

cl-sql (3.2.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 17 Sep 2005 15:53:47 -0600

cl-sql (3.2.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu,  8 Sep 2005 09:05:38 -0600

cl-sql (3.2.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  7 Sep 2005 09:47:10 -0600

cl-sql (3.2.1-2) unstable; urgency=low

  * Add /usr/lib/ to search paths. (closes:317097)

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  6 Jul 2005 06:16:51 -0600

cl-sql (3.2.1-1) unstable; urgency=low

  * New upstream
  * Add /etc/clsql-init.lisp site initialization file.

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  5 Jul 2005 17:36:38 -0600

cl-sql (3.2.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  8 Jun 2005 18:34:07 -0600

cl-sql (3.1.16-1) unstable; urgency=low

  * New upstream
  * Change build dependency from postgresql-dev to libpq-dev for new
  Etch versions of postgresql

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  7 Jun 2005 13:36:48 -0600

cl-sql (3.1.15-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 18 May 2005 01:25:33 -0600

cl-sql (3.1.14-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 17 May 2005 13:06:45 -0600

cl-sql (3.1.13-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 17 May 2005 13:06:24 -0600

cl-sql (3.1.12-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 27 Apr 2005 15:47:40 -0600

cl-sql (3.1.11-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 24 Apr 2005 08:58:51 -0600

cl-sql (3.1.10-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 13 Apr 2005 13:00:51 -0600

cl-sql (3.1.9-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  6 Apr 2005 09:30:51 -0600

cl-sql (3.1.8-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun,  3 Apr 2005 18:42:47 -0600

cl-sql (3.1.7-1) unstable; urgency=low

  * New upstream (closes:295769)

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 17 Feb 2005 16:46:22 -0700

cl-sql (3.1.6-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 28 Jan 2005 17:43:48 -0700

cl-sql (3.1.5-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  5 Jan 2005 10:25:40 -0700

cl-sql (3.1.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 29 Dec 2004 09:49:11 -0700

cl-sql (3.1.3-1) unstable; urgency=low

  * New upstream
  * Add cl-sql-sqlite3 binary package

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 21 Dec 2004 00:31:28 -0700

cl-sql (3.1.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon,  6 Dec 2004 23:09:57 -0700

cl-sql (3.1.1-1) unstable; urgency=low

  * New upstream
  * Rebuild against mysqlclient (closes:280253)

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 12 Nov 2004 08:09:38 -0700

cl-sql (3.1.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  9 Nov 2004 11:04:04 -0700

cl-sql (3.0.11-1) unstable; urgency=low

  * New usptream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 23 Oct 2004 09:34:31 -0600

cl-sql (3.0.10-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 23 Oct 2004 09:16:03 -0600

cl-sql (3.0.9-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 20 Oct 2004 20:45:40 -0600

cl-sql (3.0.8-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun,  3 Oct 2004 09:45:16 -0600

cl-sql (3.0.7-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  1 Oct 2004 08:38:52 -0600

cl-sql (3.0.6-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 27 Sep 2004 23:30:07 -0600

cl-sql (3.0.5-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 21 Sep 2004 17:14:24 -0600

cl-sql (3.0.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu,  9 Sep 2004 22:21:42 -0600

cl-sql (3.0.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  7 Sep 2004 14:45:27 -0600

cl-sql (3.0.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu,  2 Sep 2004 16:04:19 -0600

cl-sql (3.0.1-1) unstable; urgency=medium

  * New upstream, important bug fix for classes with multiple join
  classes

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  1 Sep 2004 12:16:40 -0600

cl-sql (3.0.0-2) unstable; urgency=low

  * Change assignment in rules file 

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  6 Aug 2004 10:09:04 -0600

cl-sql (3.0.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon,  2 Aug 2004 19:32:39 -0600

cl-sql (2.11.16-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 15 Jul 2004 09:32:45 -0600

cl-sql (2.11.15-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 14 Jul 2004 21:42:41 -0600

cl-sql (2.11.14-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 10 Jul 2004 19:25:15 -0600

cl-sql (2.11.13-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 10 Jul 2004 01:11:44 -0600

cl-sql (2.11.12-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  2 Jul 2004 20:41:21 -0600

cl-sql (2.11.11-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 23 Jun 2004 15:49:23 -0600

cl-sql (2.11.10-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 15 Jun 2004 18:45:47 -0600

cl-sql (2.11.9-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 13 Jun 2004 15:51:35 -0700

cl-sql (2.11.8-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 10 Jun 2004 03:43:11 -0600

cl-sql (2.11.7-2) unstable; urgency=low

  * Move cl-sql-oracle to contrib 

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  9 Jun 2004 18:49:01 -0600

cl-sql (2.11.7-1) unstable; urgency=low

  * New upstream
  * Move to contrib section (closes:253360)

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  9 Jun 2004 17:57:10 -0600

cl-sql (2.11.6-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 07 Jun 2004 13:01:23 -0600

cl-sql (2.11.5-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  4 Jun 2004 14:26:14 -0600

cl-sql (2.11.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 30 May 2004 03:33:48 -0600

cl-sql (2.11.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 29 May 2004 08:37:25 -0600

cl-sql (2.11.2-1) unstable; urgency=low

  * New upstream
  * Add cl-sql-oracle binary package	

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 27 May 2004 04:47:27 -0600

cl-sql (2.11.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 25 May 2004 02:38:21 -0600

cl-sql (2.11.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 25 May 2004 01:22:16 -0600

cl-sql (2.10.22-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 23 May 2004 11:46:00 -0600

cl-sql (2.10.21-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 23 May 2004 04:50:44 -0600

cl-sql (2.10.20-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 22 May 2004 21:29:10 -0600

cl-sql (2.10.18-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 20 May 2004 03:48:26 -0600

cl-sql (2.10.17-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 13 May 2004 04:48:28 -0600

cl-sql (2.10.16-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 12 May 2004 22:45:37 -0600

cl-sql (2.10.15-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun,  9 May 2004 18:59:19 -0600

cl-sql (2.10.14-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat,  8 May 2004 20:30:35 -0600

cl-sql (2.10.13-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat,  8 May 2004 11:41:13 -0600

cl-sql (2.10.12-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu,  6 May 2004 13:42:19 -0600

cl-sql (2.10.11-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  5 May 2004 02:06:19 -0600

cl-sql (2.10.10-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  4 May 2004 20:27:10 -0600

cl-sql (2.10.9-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  4 May 2004 12:52:19 -0600

cl-sql (2.10.8-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon,  3 May 2004 12:43:58 -0600

cl-sql (2.10.7-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon,  3 May 2004 09:50:27 -0600

cl-sql (2.10.6-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun,  2 May 2004 19:58:36 -0600

cl-sql (2.10.5-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat,  1 May 2004 14:06:43 -0600

cl-sql (2.10.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat,  1 May 2004 13:16:04 -0600

cl-sql (2.10.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat,  1 May 2004 12:18:35 -0600

cl-sql (2.10.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat,  1 May 2004 04:13:12 -0600

cl-sql (2.9.6-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 30 Apr 2004 17:07:03 -0600

cl-sql (2.9.5-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 27 Apr 2004 15:40:18 -0600

cl-sql (2.9.4-2) unstable; urgency=low

  * Change depends to libmysqlclient-dev (closes:246039) 

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 26 Apr 2004 17:35:16 -0600

cl-sql (2.9.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 24 Apr 2004 07:54:45 -0600

cl-sql (2.9.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 21 Apr 2004 00:46:34 -0600

cl-sql (2.9.1-1) unstable; urgency=low

  * Fix shared library loading in .asd files (closes:245004)

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 20 Apr 2004 19:30:16 -0600

cl-sql (2.9.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 20 Apr 2004 17:37:40 -0600

cl-sql (2.8.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 19 Apr 2004 13:02:01 -0600

cl-sql (2.8.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 19 Apr 2004 03:01:34 -0600

cl-sql (2.8.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 19 Apr 2004 00:21:37 -0600

cl-sql (2.7.9-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 18 Apr 2004 19:16:14 -0600

cl-sql (2.7.8-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 18 Apr 2004 13:42:20 -0600

cl-sql (2.7.7-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 18 Apr 2004 10:17:09 -0600

cl-sql (2.7.6-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 17 Apr 2004 20:48:15 -0600

cl-sql (2.7.5-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 17 Apr 2004 11:47:40 -0600

cl-sql (2.7.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 17 Apr 2004 09:08:18 -0600

cl-sql (2.7.3-1) unstable; urgency=low

  * New upstream
  * Change depends (closes:243977)
  * Add new backend

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 16 Apr 2004 11:47:51 -0600

cl-sql (2.6.7-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 12 Apr 2004 12:13:59 -0600

cl-sql (2.6.5-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 12 Apr 2004 10:17:58 -0600

cl-sql (2.6.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 11 Apr 2004 08:07:25 -0600

cl-sql (2.6.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 11 Apr 2004 06:48:28 -0600

cl-sql (2.6.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 11 Apr 2004 04:20:54 -0600

cl-sql (2.6.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 10 Apr 2004 19:49:58 -0600

cl-sql (2.6.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 10 Apr 2004 19:38:06 -0600

cl-sql (2.5.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  9 Apr 2004 12:54:21 -0600

cl-sql (2.5.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  9 Apr 2004 11:56:38 -0600

cl-sql (2.5.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  9 Apr 2004 08:07:00 -0600

cl-sql (2.4.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  9 Apr 2004 03:17:20 -0600

cl-sql (2.4.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  9 Apr 2004 02:56:46 -0600

cl-sql (2.4.0-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu,  8 Apr 2004 18:10:27 -0600

cl-sql (2.3.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu,  8 Apr 2004 15:17:20 -0600

cl-sql (2.3.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu,  8 Apr 2004 11:33:59 -0600

cl-sql (2.3.2-2) unstable; urgency=low

  * New upstreamc

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  7 Apr 2004 14:20:12 -0600

cl-sql (2.3.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  7 Apr 2004 13:35:01 -0600

cl-sql (2.3.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  7 Apr 2004 12:34:23 -0600

cl-sql (2.3.0-1) unstable; urgency=low

  * Integrate the clsql-usql package.

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  6 Apr 2004 09:35:28 -0600

cl-sql (2.1.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  6 Apr 2004 09:34:32 -0600

cl-sql (2.0.0-2) unstable; urgency=low

  * Change from libmysqlclient10 to libmysqlclient

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  2 Apr 2004 14:10:09 -0700

cl-sql (2.0.0-1) unstable; urgency=low

  * New upstream, integrating patch from Marcus Pearce

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  2 Apr 2004 13:34:35 -0700

cl-sql (1.9.2-1) unstable; urgency=low

  * Automatically detect mysql version

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 31 Mar 2004 16:56:23 -0700

cl-sql (1.9.1-1) unstable; urgency=low

  * Add better support for mysql v4

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 31 Mar 2004 16:48:30 -0700

cl-sql (1.9.0-2) unstable; urgency=low

  * Add cl-sql-sqlite binary package

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 10 Mar 2004 16:07:03 -0700

cl-sql (1.9.0-1) unstable; urgency=low

  * Add SQLlite backend as contributed by Aurelio Bignoli

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 10 Mar 2004 15:19:46 -0700

cl-sql (1.8.7-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 25 Nov 2003 06:30:05 -0700

cl-sql (1.8.5-1) unstable; urgency=low

  * Fix loading on db-mysql/mysql.so on non-linux platforms

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 24 Nov 2003 23:17:25 -0700

cl-sql (1.8.4-1) unstable; urgency=low

  * Fix typo in error string
  * Documentation updates

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 15 Nov 2003 10:23:16 -0700

cl-sql (1.8.3-1) unstable; urgency=low

  * More documentation, darwin changes

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 13 Nov 2003 09:24:30 -0700

cl-sql (1.8.2-1) unstable; urgency=low

  * Documentation fixes, MacOSX changes

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 12 Nov 2003 22:52:45 -0700

cl-sql (1.8.1-1) unstable; urgency=low

  * Improved shared library building

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 11 Nov 2003 15:26:55 -0700

cl-sql (1.8.0-1) unstable; urgency=low

  * Make asdf-installable

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 11 Nov 2003 08:06:28 -0700

cl-sql (1.7.9-1) unstable; urgency=low

  * Add missing documentation file

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 11 Nov 2003 05:30:23 -0700

cl-sql (1.7.8-1) unstable; urgency=low

  * Convert documentation to XML format

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 11 Nov 2003 01:20:20 -0700

cl-sql (1.7.7-1) unstable; urgency=low

  * Fix dependency for allegro-cl-trial for clsql-tests

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 22 Sep 2003 12:18:18 -0600

cl-sql (1.7.6-1) unstable; urgency=low

  * Fix connection string (closes: 208610)

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu,  4 Sep 2003 15:03:53 -0600

cl-sql (1.7.5-1) unstable; urgency=low

  * Another fix for previous bug (closes: 207813)

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  3 Sep 2003 12:21:19 -0600

cl-sql (1.7.4-1) unstable; urgency=low

  * New upstream (closes: 207813)

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 31 Aug 2003 02:19:45 -0600

cl-sql (1.7.3-1) unstable; urgency=low

  * New upstream
  * Avoid depending on acl-pro-installer for cl-sql-adobc since that
  is preventing entire source package from moving into testing since
  acl-pro-installer is only supported on x86 and ppc.
  
 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 31 Aug 2003 02:19:31 -0600

cl-sql (1.7.2-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 23 Jul 2003 12:59:46 -0600

cl-sql (1.7.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 21 Jul 2003 05:18:15 -0600

cl-sql (1.7.0-1) unstable; urgency=low

  * Update acl-compat-tester with ptester

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 20 Jul 2003 12:12:36 -0600

cl-sql (1.6.6-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 23 Jun 2003 13:25:01 -0600

cl-sql (1.6.5-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 12 Jun 2003 06:18:05 -0600

cl-sql (1.6.4-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 22 May 2003 09:42:33 -0600

cl-sql (1.6.3-1) unstable; urgency=low

  * New upstream
  * Fix dependencies for clsql-postgresql and clsql-postgresql-socket

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 21 May 2003 12:12:19 -0600

cl-sql (1.6.1-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 16 May 2003 01:59:00 -0600

cl-sql (1.6.0-1) unstable; urgency=low

  * Optimize native string conversion at the expense
  of ignoring locales on Allegro and Lispworks.

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 15 May 2003 01:32:52 -0600

cl-sql (1.5.4-1) unstable; urgency=low

  * Improve .asd files

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  6 May 2003 18:30:19 -0600

cl-sql (1.5.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon,  5 May 2003 20:22:40 -0600

cl-sql (1.5.2-1) unstable; urgency=low

  * Add build-depend-indep to control

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon,  5 May 2003 09:13:12 -0600

cl-sql (1.5.1-1) unstable; urgency=low

  * Fix for aodbc driver

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu,  1 May 2003 22:42:34 -0600

cl-sql (1.5.0-1) unstable; urgency=low

  * Update SBCL support in cmucl-compat package.
  * Use debian/compat rather than DH_COMPAT
  * Add cl-sql-tests binary with test suite
  * Use libmysqlclient10 package for LGPL license
  * Add cl-sql-uffi depends for cl-sql-posgresql-socket package (closes:191599)
  
 -- Kevin M. Rosenberg <kmr@debian.org>  Thu,  1 May 2003 16:23:37 -0600

cl-sql (1.4.6-1) unstable; urgency=low

  * Documentation fix

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 29 Apr 2003 04:47:34 -0600

cl-sql (1.4.5-1) unstable; urgency=low

  * Documentation updates for cl-md5 module from Gisle Slensminde

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 29 Apr 2003 04:03:16 -0600

cl-sql (1.4.4-1) unstable; urgency=low

  * Move unwind-protect mysql backend

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 16 Apr 2003 15:49:46 -0600

cl-sql (1.4.3-1) unstable; urgency=low

  * Rebuild against new libmysql package

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 12 Apr 2003 05:05:03 -0600

cl-sql (1.4.2-1) unstable; urgency=low

  * Add optimization for pointer derefering

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 29 Mar 2003 15:28:57 -0700

cl-sql (1.4.1-1) unstable; urgency=low

  * Fix typo in clsql-mysql

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 26 Mar 2003 18:13:22 -0700

cl-sql (1.4.0-2) unstable; urgency=low

  * Move cl-md5 dependencies to cl-sql-postgresql-socket (closes: 185738)

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 21 Mar 2003 09:00:24 -0700

cl-sql (1.4.0-1) unstable; urgency=low

  * Add MD5 support to postgresql socket backend (contributed by
  Robert Macomber)

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun,  2 Mar 2003 12:59:10 -0700

cl-sql (1.3.0-1) unstable; urgency=low

  * uffi/clsql-uffi.lisp: return NIL for numeric fields that are NULL

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 13 Dec 2002 05:30:08 -0700

cl-sql (1.2.4-1) unstable; urgency=low

  * Remove changes information from copyright file
  * Minor upstream changes

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  4 Dec 2002 14:39:00 -0700

cl-sql (1.2.3-1) unstable; urgency=low

  * New upstream

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 14 Nov 2002 11:52:32 -0700

cl-sql (1.2.2-1) unstable; urgency=low

  * Remove 'load-compiled-op from .asd file

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  8 Nov 2002 09:49:09 -0700

cl-sql (1.2.1-1) unstable; urgency=low

  * New upstream version

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 30 Oct 2002 12:08:03 -0700

cl-sql (1.2.0-3) unstable; urgency=low

  * Move cl-sql-base package architecture from any to all.

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 28 Oct 2002 16:07:25 -0700

cl-sql (1.2.0-2) unstable; urgency=low

  * Split rules file into build-arch and build-indep (closes: 166800)
  Thanks Bdale

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 28 Oct 2002 12:42:17 -0700

cl-sql (1.2.0-1) unstable; urgency=low

  * sql/pool.lisp: Add full support for multiprocessing locks for ACL, LW,
    SCL.

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 21 Oct 2002 07:44:02 -0600

cl-sql (1.1.3-1) unstable; urgency=low

  * Add more support for SCL and performance improvements to postgresql-socket
  (Thanks Doug Crosher)
  * Add locks to connection pool for SCL (Doug Crosher)

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 21 Oct 2002 01:26:40 -0600

cl-sql (1.1.2-1) unstable; urgency=low

  * Fix clsql-mysql.so search path for Debian.

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 17 Oct 2002 19:16:52 -0600

cl-sql (1.1.1-1) unstable; urgency=low

  * Add more tests can existence of helper libraries. Will signal error rather than warn
  if libraries not found.

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 17 Oct 2002 16:12:01 -0600

cl-sql (1.1.0-1) unstable; urgency=low

  * Add SCL support.
  * Fix file type in test-suite/tester-clsql.lisp
  * Add *load-truename* searching for clsql's compiled libraries
  
 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 15 Oct 2002 13:34:41 -0600

cl-sql (1.0.1-1) unstable; urgency=low

  * Add defgeneric for generic functions

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 14 Oct 2002 09:18:39 -0600

cl-sql (1.0.0-1) unstable; urgency=low

  * Add SBCL support

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 13 Oct 2002 20:52:41 -0600

cl-sql (0.9.9-1) unstable; urgency=high

  * Add version depends for common-lisp-controller

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  2 Oct 2002 07:50:27 -0600

cl-sql (0.9.8-1) unstable; urgency=low

  * Rename .cl files to .lisp files

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 30 Sep 2002 04:08:25 -0600

cl-sql (0.9.7-1) unstable; urgency=low

  * base/conditions.cl: Fix format string error

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 30 Sep 2002 00:13:36 -0600

cl-sql (0.9.6-1) unstable; urgency=low

  * Remove cl-library logical hosts from load-library calls

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 29 Sep 2002 23:32:22 -0600

cl-sql (0.9.5-1) unstable; urgency=low

  * OpenMCL is now supported
  * Fix defgeneric form in db-interfaces.cl
  * Fix load-libraries call in postgresql-socket-api.cl

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 27 Sep 2002 08:55:33 -0600

cl-sql (0.9.4-2) unstable; urgency=low

  * Move documentation to cl-sql package (closes: 162491)

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 26 Sep 2002 15:20:19 -0600

cl-sql (0.9.4-1) unstable; urgency=low

  * Add reader conditionals to .asd file

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 25 Sep 2002 06:37:30 -0600

cl-sql (0.9.3-2) unstable; urgency=low

  * Add call to clc-only-compatible

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 22 Sep 2002 21:01:20 -0600

cl-sql (0.9.3-1) unstable; urgency=low

  * push onto cl:*features* if loaded with 'asdf:load-compiled-op

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 20 Sep 2002 00:07:25 -0600

cl-sql (0.9.2-1) unstable; urgency=low

  * Add information fields to .asd files

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 19 Sep 2002 19:40:43 -0600

cl-sql (0.9.1-1) unstable; urgency=low

  * New upstream fixing typo in clsql.asdf
  * Fix /usr/share/common-lisp/source/clsql directory structure

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 19 Sep 2002 15:22:51 -0600

cl-sql (0.9.0-1) unstable; urgency=low

  * Move entirely to .asd files. Remove pathnames from .asd files.

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 18 Sep 2002 01:18:12 -0600

cl-sql (0.8.6-1) unstable; urgency=low

  * New upstream version, fixes problem with .asd files

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  6 Sep 2002 04:26:06 -0600

cl-sql (0.8.5-1) unstable; urgency=low

  * New upstream version

 -- Kevin M. Rosenberg <kmr@debian.org>  Sun,  1 Sep 2002 03:00:37 -0600

cl-sql (0.8.4-1) unstable; urgency=low

  * New upstream version for non-CLC systems

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 23 Aug 2002 22:40:51 -0600

cl-sql (0.8.3-1) unstable; urgency=high

  * Add .asd definition files to upstream for ASDF users
  * Ready for release to sarge

 -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 17 Aug 2002 20:54:35 -0600

cl-sql (0.8.2-1) unstable; urgency=low

  * New upstream version
  * Update depends for cl-sql-aodbc to be acl-pro-instaler, not acl-installer
  * Upload e-mail adress
  
 -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 11 Aug 2002 22:54:04 -0600

cl-sql (0.8.1-1) unstable; urgency=low

  * New upstream version. (Changed RedHat to Debian in upstream documentation!)

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  2 Aug 2002 09:45:08 -0600

cl-sql (0.8.0-2) unstable; urgency=low

  * Fix preinst template type to properly remove old symlinks

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  2 Aug 2002 09:12:32 -0600

cl-sql (0.8.0-1) unstable; urgency=low

  * New upstream, restructure directories for improved Common Lisp
    Controller v3 compatibility.
  * New binary package: cl-sql-uffi (handles common UFFI tasks for
    some of the database backends).

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  2 Aug 2002 05:52:38 -0600

cl-sql (0.7.6-2) unstable; urgency=low

  * Rework logical pathnames for improved Common Lisp Controller compatibility.

 -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 31 Jul 2002 19:31:40 -0600

cl-sql (0.7.6-1) unstable; urgency=low

  * New upstream version, improves Common Lisp Controller compatibility.
  
 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 26 Jul 2002 01:15:07 -0600

cl-sql (0.7.5-1) unstable; urgency=low

  * Fix Build-Depends in control file (closes: 154217)
  * Rework debhelper rules file to use dh_install rather than install
  * Minor change in upstream.

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 25 Jul 2002 09:15:44 -0600

cl-sql (0.7.4-1) unstable; urgency=low

  * Rework upstream source to put html documentation in html.tar.gz
  * Move .so files into /usr/lib/cl-sql directory
  * Move documentation into the clsql-base package, change doc-base section
  to programming.

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon,  8 Jul 2002 11:10:11 -0600

cl-sql (0.7.3-1) unstable; urgency=low

  * Added missing documentation to upstream package.

 -- Kevin M. Rosenberg <kmr@debian.org>  Mon,  8 Jul 2002 07:10:42 -0600

cl-sql (0.7.2-1) unstable; urgency=low

  * New upstream version.
  
  * Add the text of the LLGPL to the copyright file.

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  5 Jul 2002 11:06:21 -0600

cl-sql (0.7.1-2) unstable; urgency=low

  * Additions to the copyright file

 -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 28 Jun 2002 11:17:36 -0600

cl-sql (0.7.1-1) unstable; urgency=low

  * Initial Release (closes: 146792).

 -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 25 Apr 2002 19:13:41 -0600