Skip to content

Commit 8084df2

Browse files
author
R. S. Doiel
committed
prep for v0.0.30, Replace People List A to Z UL with a sortable table version.
1 parent 26fc9a1 commit 8084df2

25 files changed

+59
-27
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ contacts:
2929
3030

3131
repository-code: "https://github.com/caltechlibrary/cold"
32-
version: 0.0.29
32+
version: 0.0.30
3333
date-released: 2025-05-13
3434

3535
license-url: "https://caltechlibrary.github.io/cold/LICENSE"

about.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@
1919
</nav>
2020
<section>
2121
<h1 id="about-this-software">About this software</h1>
22-
<h2 id="cold-0.0.29">cold 0.0.29</h2>
23-
<p>Improved Thesis Option Vacabulary curation. Setup for importing
24-
Thesis Options.</p>
22+
<h2 id="cold-0.0.30">cold 0.0.30</h2>
23+
<p>Replace People List A to Z UL with a sortable table version.</p>
2524
<h3 id="authors">Authors</h3>
2625
<ul>
2726
<li>R. S. Doiel, <a href="https://orcid.org/0000-0003-0900-6903"

about.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ maintainer:
3232
id: https://orcid.org/0000-0003-0900-6903
3333

3434
repository_code: https://github.com/caltechlibrary/cold
35-
version: 0.0.29
35+
version: 0.0.30
3636
license_url: https://caltechlibrary.github.io/cold/LICENSE
3737
operating_system:
3838
- Linux
@@ -58,9 +58,9 @@ date_released: 2025-05-13
5858
About this software
5959
===================
6060

61-
## cold 0.0.29
61+
## cold 0.0.30
6262

63-
Improved Thesis Option Vacabulary curation. Setup for importing Thesis Options.
63+
Replace People List A to Z UL with a sortable table version.
6464

6565
### Authors
6666

codemeta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@
9696
"Dataset >= 2.2",
9797
"CMTools >= 0.0.25"
9898
],
99-
"version": "0.0.29",
99+
"version": "0.0.30",
100100
"developmentStatus": "wip",
101101
"issueTracker": "https://github.com/caltechlibrary/cold/issues",
102102
"downloadUrl": "https://github.com/caltechlibrary/cold/release/latest",
103-
"releaseNotes": "Improved Thesis Option Vacabulary curation. Setup for importing Thesis Options."
103+
"releaseNotes": "Replace People List A to Z UL with a sortable table version."
104104
}

cold.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%cold(1) user manual | 0.0.29 df3dce7
1+
%cold(1) user manual | 0.0.30 26fc9a1
22
% R. S.Doiel
33
% 2025-05-13
44

cold_reports.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%cold_reports(1) user manual | 0.0.29 df3dce7
1+
%cold_reports(1) user manual | 0.0.30 26fc9a1
22
% R. S.Doiel
33
% 2025-05-13
44

directory_sync.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%directory_sync(1) user manual | 0.0.29 df3dce7
1+
%directory_sync(1) user manual | 0.0.30 26fc9a1
22
% R. S.Doiel
33
% 2025-05-13
44

division_people.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%division_people(1) user manual | 0.0.29 df3dce7
1+
%division_people(1) user manual | 0.0.30 26fc9a1
22
% R. S.Doiel
33
% 2025-05-13
44

division_people.sql

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
select
2+
json_object(
3+
'division', src->'division',
4+
'clpid', src->'cl_people_id',
5+
'orcid', src->'orcid',
6+
'family_name', src->'family_name',
7+
'given_name', src->'given_name'
8+
) as src
9+
from people
10+
where src->>'division' != ''
11+
order by src->>'division', src->>'family_name', src->>'given_name';

group_vocabulary.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%group_vocabulary(1) user manual | 0.0.29 df3dce7
1+
%group_vocabulary(1) user manual | 0.0.30 26fc9a1
22
% R. S.Doiel
33
% 2025-05-13
44

0 commit comments

Comments
 (0)