From aed847ac731620f4c1476955919de241488a58ea Mon Sep 17 00:00:00 2001 From: Vincent Rubinetti Date: Mon, 22 Apr 2024 15:57:46 -0400 Subject: [PATCH 01/13] simplify portrait component, add affiliation --- _includes/list.html | 1 + _includes/portrait.html | 34 ++++++++++++++---------- _members/jane-smith.md | 1 + _styles/portrait.scss | 59 ++++++++++++++++++++++------------------- 4 files changed, 53 insertions(+), 42 deletions(-) diff --git a/_includes/list.html b/_includes/list.html index 92026fd511..cdb030c956 100644 --- a/_includes/list.html +++ b/_includes/list.html @@ -24,6 +24,7 @@ {% include {{ include.component | append: ".html" }} + affiliation=d.affiliation author=d.author authors=d.authors buttons=d.buttons diff --git a/_includes/portrait.html b/_includes/portrait.html index 3b77f3d168..3986db06d8 100644 --- a/_includes/portrait.html +++ b/_includes/portrait.html @@ -7,6 +7,8 @@ {% assign member = include %} {% endif %} +{% assign type = site.data.types[member.role] %} +
+ {% if type %} + {% include icon.html icon=type.icon %} + {% endif %} + - {% if member.name or member.role or member.description %} - - {% if member.name %} - - {{ member.name }} - - {% endif %} + {% if member.name %} + + {{ member.name }} + + {% endif %} + + {% if member.description or type %} + + {{ member.description | default: type.description }} + + {% endif %} - {% if member.role or member.description %} - - {% assign type = site.data.types[member.role] %} - {% include icon.html icon=type.icon %} - {{ member.description | default: type.description }} - - {% endif %} + {% if member.affiliation %} + + {{ member.affiliation }} {% endif %} diff --git a/_members/jane-smith.md b/_members/jane-smith.md index f4cae89631..c60188ecd7 100644 --- a/_members/jane-smith.md +++ b/_members/jane-smith.md @@ -2,6 +2,7 @@ name: Jane Smith image: images/photo.jpg role: pi +affiliation: University of Colorado aliases: - J. Smith - J Smith diff --git a/_styles/portrait.scss b/_styles/portrait.scss index fa0c03960b..d91785721c 100644 --- a/_styles/portrait.scss +++ b/_styles/portrait.scss @@ -11,7 +11,6 @@ justify-content: center; align-items: center; flex-direction: column; - gap: 20px; margin: 20px; width: 175px; max-width: calc(100% - 20px - 20px); @@ -29,25 +28,42 @@ text-align: left; } -.portrait-image { - width: 100%; +.portrait .icon { + position: absolute; + left: 0; + top: 0; + display: flex; + justify-content: center; + align-items: center; + width: calc(20px + 10%); aspect-ratio: 1 / 1; border-radius: 999px; - object-fit: cover; + background: var(--background); box-shadow: var(--shadow); + transform: translate(14%, 14%); } -.portrait[data-style="tiny"] .portrait-image { - width: 50px; +.portrait[data-style="small"] .icon { + left: -2px; + top: -2px; } -.portrait[data-style="tiny"] .portrait-role { +.portrait[data-style="tiny"] .icon { display: none; } -.portrait-text { - display: flex; - flex-direction: column; +.portrait-image { + width: 100%; + margin-bottom: 20px; + aspect-ratio: 1 / 1; + border-radius: 999px; + object-fit: cover; + box-shadow: var(--shadow); +} + +.portrait[data-style="tiny"] .portrait-image { + width: 50px; + margin: 0; } .portrait-name { @@ -55,22 +71,9 @@ font-weight: var(--semi-bold); } -.portrait-role .icon { - position: absolute; - left: 0; - top: 0; - display: flex; - justify-content: center; - align-items: center; - width: calc(20px + 10%); - aspect-ratio: 1 / 1; - border-radius: 999px; - background: var(--background); - box-shadow: var(--shadow); - transform: translate(14%, 14%); -} - -.portrait[data-style="small"] .portrait-role .icon { - left: -2px; - top: -2px; +.portrait[data-style="tiny"] { + .portrait-description, + .portrait-affiliation { + display: none; + } } From 06b406794f902f7685dd81d3aa0dae088b27b4e9 Mon Sep 17 00:00:00 2001 From: Vincent Rubinetti Date: Mon, 22 Apr 2024 16:04:31 -0400 Subject: [PATCH 02/13] fix tag deduplication --- _includes/tags.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_includes/tags.html b/_includes/tags.html index fb16266d50..1b7bccbb08 100644 --- a/_includes/tags.html +++ b/_includes/tags.html @@ -1,6 +1,8 @@ {% assign tags = include.tags | object_items | join: "," + | downcase + | regex_replace: "-|\s+", " " | split: "," | array_filter | uniq From 6c4c8d7dc61e47bd51dabeaed5aab021f01701b9 Mon Sep 17 00:00:00 2001 From: Vincent Rubinetti Date: Mon, 22 Apr 2024 16:06:50 -0400 Subject: [PATCH 03/13] update version --- CHANGELOG.md | 11 +++++++++++ CITATION.cff | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb1f988eed..166f488d37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ Reference: common-changelog.org +## 1.2.2 - 2024-04-24 + +### Added + +- Add `affiliation` member portrait field. + +### Changed + +- Simplify portrait component under-the-hood. +- Make tag component de-duplication consistent with search plugin de-duplication. + ## 1.2.1 - 2024-04-01 ### Changed diff --git a/CITATION.cff b/CITATION.cff index 4b875d4752..dfe6d51f58 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,8 +1,8 @@ # citation metadata for the template itself title: "Lab Website Template" -version: 1.2.1 -date-released: 2024-04-01 +version: 1.2.2 +date-released: 2024-04-24 url: "https://github.com/greenelab/lab-website-template" authors: - family-names: "Rubinetti" From 236bc842ab395dd133d22fec62d109e23b362e2d Mon Sep 17 00:00:00 2001 From: Vincent Rubinetti Date: Mon, 22 Apr 2024 16:21:28 -0400 Subject: [PATCH 04/13] normalize tags to kebab-case --- _includes/tags.html | 4 +++- _scripts/search.js | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/_includes/tags.html b/_includes/tags.html index 1b7bccbb08..4f92729dae 100644 --- a/_includes/tags.html +++ b/_includes/tags.html @@ -2,9 +2,11 @@ | object_items | join: "," | downcase - | regex_replace: "-|\s+", " " | split: "," | array_filter + | join: "," + | regex_replace: "\s+", "-" + | split: "," | uniq %} {% assign link = include.link | default: page.dir | absolute_url %} diff --git a/_scripts/search.js b/_scripts/search.js index fa23ca4c21..3d1da24045 100644 --- a/_scripts/search.js +++ b/_scripts/search.js @@ -38,7 +38,7 @@ // normalize tag string for comparison window.normalizeTag = (tag) => - tag.trim().toLowerCase().replaceAll(/-|\s+/g, " "); + tag.trim().toLowerCase().replaceAll(/\s+/g, "-"); // get data attribute contents of element and children const getAttr = (element, attr) => From 8d507c2f1875a52ee4161c9211bba58d7cc9381a Mon Sep 17 00:00:00 2001 From: Vincent Rubinetti Date: Tue, 7 May 2024 12:48:18 -0400 Subject: [PATCH 05/13] import manubot prefixes --- CHANGELOG.md | 3 ++- CITATION.cff | 2 +- _cite/.cache/cache.db | Bin 49152 -> 49152 bytes _cite/plugins/orcid.py | 5 +++-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 166f488d37..1411cfef34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Reference: common-changelog.org -## 1.2.2 - 2024-04-24 +## 1.2.2 - 2024-05-07 ### Added @@ -12,6 +12,7 @@ Reference: common-changelog.org - Simplify portrait component under-the-hood. - Make tag component de-duplication consistent with search plugin de-duplication. +- Expand list of supported Manubot identifiers and thus keep ORCID API details less often. ## 1.2.1 - 2024-04-01 diff --git a/CITATION.cff b/CITATION.cff index dfe6d51f58..a12fdf9bef 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,7 +2,7 @@ title: "Lab Website Template" version: 1.2.2 -date-released: 2024-04-24 +date-released: 2024-05-07 url: "https://github.com/greenelab/lab-website-template" authors: - family-names: "Rubinetti" diff --git a/_cite/.cache/cache.db b/_cite/.cache/cache.db index 2ca6d980786a072bb0cc0da17cbe3bc7aadd1d82..f9cb2f40f14248136c4bf41bb05e59cd12988232 100644 GIT binary patch delta 525 zcmZo@U~Xt&o*>Q0KT*b+k$+>tB6*?f3<7+MSom4_cJiI&JH+>u@7ZP%g?>J!UY^NI z^$a8U7#JA%ffxpOdbyb8IZ6`K<1_P8QY(0SIhhqXic1npGK)(xlZ!cdnZ+5C^Gowe zcqDp7m`xc|GK;h03o?_lb5i3Ait*-5M^$IZ?auyfnWR|4H7gy#b zXB6e<<(C$V_XpuS(U25All0}d4s-~a4#>j zB4cuCPELGIW^QH)mwGSv=9~Hg{ES_bU)h;4_Doi^7pw2)XI5lFxRb3@lG&6Ao8#D~ zh%*~PWO6g};?pvL4hPxCHW?(2=~%W&qRhH5@!Z_R0*LB~63oUh(X9MZ?xMWJocP@Q zlvK6}lMmX9Y4#(TmRMSnA77T3Tw0pT)(3JY!ZU2Wn;hcw+4^2>+Huu)b4va%ezv}8 zL11=$f(k2hN_1!6WP`O5lMA-t9OVgF{irQEz?5XFu+AqD_xh-Uju2YCTP CyR>xx delta 525 zcmZo@U~Xt&o*>Q0J5k1&k#}RlB6*=_3<7+MnE6@xcJiI&JH&U5@7rb(g?>J!o`A_q z^$a6;dwiJ{If_dXOEQZ~GLwrL7#IYA7!G)P{FvoAN)prKGxJhXD>!+X#Tk?HOY=&2 zBzhv4O&L=%i?ibkGLy4&QsWDX@=NlQ^K)1wdcr5`=}SuWgfSa(78mAZmZZiPSLP*W z6y@jTmllingicP>mtg7%nOvPav}* zV{&OuPJB*gZe|IWdXN9+oB9I$jDC|}*_km0OjfiPtM}(;R%AkWgUwfx*^~*J`kmMu(_Sr;aro10hwQ5`D5Yz!04$}ik5U0;pRhwK;$F(^n{}(@7l_oQo zU7w)B8g#!^qkFQ!T8YU8+j%CxT|5^mlDM#cv)oc{UNMMb$D0rXfHXw2{icJw0Nl;3 AT>t<8 diff --git a/_cite/plugins/orcid.py b/_cite/plugins/orcid.py index 0017145942..845bb6da66 100644 --- a/_cite/plugins/orcid.py +++ b/_cite/plugins/orcid.py @@ -1,6 +1,7 @@ import json from urllib.request import Request, urlopen from util import * +from manubot.cite.handlers import prefix_to_handler as manubot_prefixes def main(entry): @@ -52,8 +53,8 @@ def query(_id): # create source source = {"id": f"{id_type}:{id_value}"} - # if not a doi, Manubot likely can't cite, so keep citation details - if id_type != "doi": + # if not an id type that Manubot can cite, keep citation details + if id_type not in list(manubot_prefixes.keys()): # get summaries summaries = get_safe(work, "work-summary", []) From 579bbc2cf6a21034171bdb95f7714e600e6f75c0 Mon Sep 17 00:00:00 2001 From: Vincent Rubinetti Date: Tue, 7 May 2024 14:23:58 -0400 Subject: [PATCH 06/13] change order and type of preferred ids from orcid --- CHANGELOG.md | 1 + _cite/plugins/orcid.py | 17 +++++++++++++---- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1411cfef34..91e391d1a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ Reference: common-changelog.org - Simplify portrait component under-the-hood. - Make tag component de-duplication consistent with search plugin de-duplication. - Expand list of supported Manubot identifiers and thus keep ORCID API details less often. +- Change order and type of preferred ids from ORCID API. ## 1.2.1 - 2024-04-01 diff --git a/_cite/plugins/orcid.py b/_cite/plugins/orcid.py index 845bb6da66..7690ddc67f 100644 --- a/_cite/plugins/orcid.py +++ b/_cite/plugins/orcid.py @@ -36,16 +36,25 @@ def query(_id): # go through response structure and pull out ids e.g. doi:1234/56789 for work in response: # get list of ids - ids = get_safe(work, "external-ids.external-id", []) + ids = [] for summary in get_safe(work, "work-summary", []): ids = ids + get_safe(summary, "external-ids.external-id", []) + ids = ids + get_safe(work, "external-ids.external-id", []) - # prefer doi id type, or fallback to first id + # prefer particular "relationship" type, or fallback to first id _id = next( - (id for id in ids if get_safe(id, "external-id-type", "") == "doi"), - ids[0] if len(ids) > 0 else {}, + ( + id + for id in ids + if get_safe(id, "external-id-relationship", "") + in ["self", "version-of", "part-of"] + ), + ids[0] if len(ids) > 0 else None, ) + if _id == None: + continue + # get id and id-type from response id_type = get_safe(_id, "external-id-type", "") id_value = get_safe(_id, "external-id-value", "") From aa1b09d68ea73b8bb9092084a6bb2943360a83a7 Mon Sep 17 00:00:00 2001 From: Vincent Rubinetti Date: Thu, 30 May 2024 12:53:42 -0400 Subject: [PATCH 07/13] Update _cite/plugins/orcid.py Co-authored-by: Faisal Alquaddoomi --- _cite/plugins/orcid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_cite/plugins/orcid.py b/_cite/plugins/orcid.py index 7690ddc67f..4a666110f5 100644 --- a/_cite/plugins/orcid.py +++ b/_cite/plugins/orcid.py @@ -63,7 +63,7 @@ def query(_id): source = {"id": f"{id_type}:{id_value}"} # if not an id type that Manubot can cite, keep citation details - if id_type not in list(manubot_prefixes.keys()): + if id_type not in manubot_prefixes: # get summaries summaries = get_safe(work, "work-summary", []) From 479b3482fe4009740340f5207e09c567bf485671 Mon Sep 17 00:00:00 2001 From: vincerubinetti Date: Thu, 30 May 2024 16:54:33 +0000 Subject: [PATCH 08/13] Update citations --- _cite/.cache/cache.db | Bin 49152 -> 49152 bytes _data/citations.yaml | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_cite/.cache/cache.db b/_cite/.cache/cache.db index f9cb2f40f14248136c4bf41bb05e59cd12988232..96041e520e05e09596034de6b839b5a0dd38e71b 100644 GIT binary patch delta 1553 zcmb`GU1%It6vt11rCnVm^? zXHBh(U9BaEu4H=cripboEd&dFu*p~o;)8+@g2k%fLljyc6!GJs4_d5Go_p7wshCFx zW)A=RKb-rUbI+|-nQE0;=%V9J_ZSc3<7CtP}<2hH4H>E)AJ6Fgq z$LKU#9e8L$VyR$QWKy(hl}$SuttFXlAzL|;*Ud@om{?0NJ)x4V*m}v<)e=;Sz>A-B zEz1nilX_`7KclPDhL)cxTDGNH2Ai&JLj!VWW-BuoF3lRct>sHEn(9>1GOcncRoj9T zIYW1&m*lR_E=CUglcOr?6lChhwJepWb)w61>fQ{~L#t)O$Qyb=w}lYuNMl+ zOe_1{G_$k4dekaMil$=Z3)ZB@okO3DBzxbvtC~`_t^5m$S}qs3Wz6aS47apCdPmw3 z;h~uVEx1Ln)G#aERrrXJNvqM26M5Fxt z7I*)F1A*}h`^xc9xXPX}@X5gQ=017KDrj=CY?@k8p0kS6vY{OApVJPP;5hnituSLK zwzlaa`g2Vd2#=&u((kTtXk0o0MK6-l_!DJ#I=A6|bGqZlMzk%Q>*s%nc;dWyNAQGg zjD|h&*v+MoC$?V}`L}>rx=X@ZsD>y(+(d z?X!P@M`$-OI~LoFzTWq>Phao*%BKh6(}VEoLHP6_eENFdmp(lRpB_Y|*P{pJ(}TE+ zzVABFudi_NV1uF?YtGyBb01C65(P)g^L&U3(bVnA|9HlO$vWAx-8hIuyCdr#i;1uZ z=gd*7RAe-)^5d)!xIwKtj&sjzyZ9J&%tM;rjdIUyMYj&}=;lI4SF0&_HXLXUE{U5I z1ne)6c`6GzG4zOYffe^!*{9I=&RD49S>04M(?-3gub>;RJ_%H~mAC{R2wVbdcjV-K z0qj9%iAQ2fyZWgIh*ud-6OTmjAiD3(vjM=uZ6_XyEse2?fVCaHd{uOBzy21DH-IA{ zi6pkPyZpwHAik$8zlTD?LUV1U$)P=qV~~%h2g!AV=rw;ovihi*jZwu zLJEtS|aeGpZ)jc^DI9IDjPHxS|g0G#v1l3ya$!!O!ecpfo`vxV4s8H#vu zVBb50L*(N=Vp(9f2h7w&Qq$9!DXAP}`vXNYWokuJQ;R`~?S`sh>82PhZ(;Ytv{pQs z%xmh&Y$lm67^a~bSuR@Mj0cq7o=xoDVDVH|Gc(EJ`?@+=Fm%Hzc9*+wO6h@NJgxNg zB35A@=cp-ll4NQhWMW`zS;m)@?oATg4^=ChO=h*6W(vE?A$wg3Bls15`0@~(#r^Tf z%-4wRXFQGkmp$x$=D&pTXS>Gb$>SOkP0R6^zW=vUzPgot#(kg5rSk3UN|YUR z-<~k6P(e>+lQ|=u;m_b7h5|8`o+GL7VWDb=!a{2bNknc>Uz1An4jf=GHFh9@y+o#VQt*VnJ0> z`8>XxRG@_KkL|FZ8XaYPBq>p;yeeePlX+P%Y48{q2Q z-svIH1;4G{8wz#6#Of`f1AMv^bivw{SFQv)V07wPe+PiiH+UEPTK}}kb-?(+6~@;= zo6lWiUC_AmNtGd@X-k}^Bm4onj~eJUve8BK9hyZmsDLuWPAva?$IiJoJv&yb%d=y( z!k!%hJUaw=5ADA;7a^wPeo@0pl-p>=5MHv0BnU?MTEF$239cKv4B3IDu)_ zDz_jb57sIY#Lb06k#?owbzEH|6^GZ`*p7d{g&`a*OgY+5%28}p zB^FQ`orPgN3n( yy}WV|)=PZY*8s3ltK5N4-`p)BKrW@*ibo&*@9m6|Yv=5#d;MH&$E&v`82Ss<2>#Ci diff --git a/_data/citations.yaml b/_data/citations.yaml index db4e4b0036..0e483e3a9d 100644 --- a/_data/citations.yaml +++ b/_data/citations.yaml @@ -141,11 +141,11 @@ - Jacob D Krol - Joseph T Burke - Samuel Z Chen - - Lo Sosinski + - Lo M Sosinski - Faisal S Alquaddoomi - Evan P Brenner - Ethan P Wolfe - - Vince P Rubinetti + - Vincent P Rubinetti - Shaddai Amolitos - Kellen M Reason - John B Johnston From b703f00f4eb6a752567296ad5f3df90b9cde554e Mon Sep 17 00:00:00 2001 From: Vincent Rubinetti Date: Thu, 30 May 2024 13:22:53 -0400 Subject: [PATCH 09/13] review comments --- _cite/plugins/orcid.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/_cite/plugins/orcid.py b/_cite/plugins/orcid.py index 4a666110f5..1558a22624 100644 --- a/_cite/plugins/orcid.py +++ b/_cite/plugins/orcid.py @@ -41,7 +41,7 @@ def query(_id): ids = ids + get_safe(summary, "external-ids.external-id", []) ids = ids + get_safe(work, "external-ids.external-id", []) - # prefer particular "relationship" type, or fallback to first id + # find first id of particular "relationship" type _id = next( ( id @@ -67,15 +67,6 @@ def query(_id): # get summaries summaries = get_safe(work, "work-summary", []) - # sort summary entries by most recent - summaries = sorted( - summaries, - key=lambda summary: (get_safe(summary, "last-modified-date.value", 0)) - or get_safe(summary, "created-date.value", 0) - or 0, - reverse=True, - ) - # get first summary with defined sub-value def first(get_func): return next( From c0036cb55dbd33b1d9b34f86d325a2d1f7dba659 Mon Sep 17 00:00:00 2001 From: Vincent Rubinetti Date: Thu, 30 May 2024 14:39:16 -0400 Subject: [PATCH 10/13] update date --- CHANGELOG.md | 6 +++--- CITATION.cff | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91e391d1a7..ee0c51f05e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Reference: common-changelog.org -## 1.2.2 - 2024-05-07 +## 1.2.2 - 2024-05-30 ### Added @@ -10,10 +10,10 @@ Reference: common-changelog.org ### Changed +- Change order and type of preferred ids from ORCID API. +- Expand list of supported Manubot identifiers and thus keep ORCID API details less often. - Simplify portrait component under-the-hood. - Make tag component de-duplication consistent with search plugin de-duplication. -- Expand list of supported Manubot identifiers and thus keep ORCID API details less often. -- Change order and type of preferred ids from ORCID API. ## 1.2.1 - 2024-04-01 diff --git a/CITATION.cff b/CITATION.cff index a12fdf9bef..0cefcdb0f1 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,7 +2,7 @@ title: "Lab Website Template" version: 1.2.2 -date-released: 2024-05-07 +date-released: 2024-05-30 url: "https://github.com/greenelab/lab-website-template" authors: - family-names: "Rubinetti" From ed806f436fe03dee5db65a3da29431f8d618a9a0 Mon Sep 17 00:00:00 2001 From: Vincent Rubinetti Date: Fri, 31 May 2024 11:29:00 -0400 Subject: [PATCH 11/13] remove top level ids --- _cite/plugins/orcid.py | 1 - 1 file changed, 1 deletion(-) diff --git a/_cite/plugins/orcid.py b/_cite/plugins/orcid.py index 1558a22624..2f7d04de19 100644 --- a/_cite/plugins/orcid.py +++ b/_cite/plugins/orcid.py @@ -39,7 +39,6 @@ def query(_id): ids = [] for summary in get_safe(work, "work-summary", []): ids = ids + get_safe(summary, "external-ids.external-id", []) - ids = ids + get_safe(work, "external-ids.external-id", []) # find first id of particular "relationship" type _id = next( From 1544e343ed919f4275e83367aed524a61c544f05 Mon Sep 17 00:00:00 2001 From: Vincent Rubinetti Date: Fri, 31 May 2024 11:40:38 -0400 Subject: [PATCH 12/13] update date --- CHANGELOG.md | 2 +- CITATION.cff | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee0c51f05e..8f67f7980f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Reference: common-changelog.org -## 1.2.2 - 2024-05-30 +## 1.2.2 - 2024-05-31 ### Added diff --git a/CITATION.cff b/CITATION.cff index 0cefcdb0f1..ed22d4b4b2 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,7 +2,7 @@ title: "Lab Website Template" version: 1.2.2 -date-released: 2024-05-30 +date-released: 2024-05-31 url: "https://github.com/greenelab/lab-website-template" authors: - family-names: "Rubinetti" From f67f2d48ef848fbd1c5b14119fab12a9b70f5b56 Mon Sep 17 00:00:00 2001 From: Vincent Rubinetti Date: Wed, 5 Jun 2024 16:23:37 -0400 Subject: [PATCH 13/13] update date --- CHANGELOG.md | 2 +- CITATION.cff | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f67f7980f..35da88ea80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Reference: common-changelog.org -## 1.2.2 - 2024-05-31 +## 1.2.2 - 2024-06-05 ### Added diff --git a/CITATION.cff b/CITATION.cff index ed22d4b4b2..2ded51e8d2 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,7 +2,7 @@ title: "Lab Website Template" version: 1.2.2 -date-released: 2024-05-31 +date-released: 2024-06-05 url: "https://github.com/greenelab/lab-website-template" authors: - family-names: "Rubinetti"