diff --git a/CHANGES.rst b/CHANGES.rst index 6f6c6e21..04a1a0b4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,12 @@ +1.3.2 (14-03-2023) +------------------ + +- Fix broken CITATION.cff file. Otherwise this version is identical to 1.3.1 + 1.3.1 (14-03-2023) ------------------ -- Show acutal language tags in admin interface drop downs, as opposed to just the labels to reduce confusion. (#766) +- Show actual language tags in admin interface drop downs, as opposed to just the labels to reduce confusion. (#766) - JSON-LD export was broken because the provided context was missing a context attribute. (#794) - Added a link from a concept page in the admin interface to the public interface. (#791) diff --git a/CITATION.cff b/CITATION.cff index 887cf270..6dff0e57 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -88,5 +88,5 @@ keywords: - vocabulary - python license: GPL-3.0 -version: 1.3.1 +version: 1.3.2 date-released: '2023-03-14' diff --git a/atramhasis/openapi.yaml b/atramhasis/openapi.yaml index d323d11c..b2024ca3 100644 --- a/atramhasis/openapi.yaml +++ b/atramhasis/openapi.yaml @@ -2,7 +2,7 @@ openapi: 3.0.3 info: title: Atramhasis API - version: 1.3.1 + version: 1.3.2 servers: - url: '/' diff --git a/atramhasis/static/admin/package.json b/atramhasis/static/admin/package.json index 0874f8e1..7b9a9406 100644 --- a/atramhasis/static/admin/package.json +++ b/atramhasis/static/admin/package.json @@ -1,6 +1,6 @@ { "name": "atramhasis", - "version": "1.3.1", + "version": "1.3.2", "description": "Node packages for building Atramhasis.", "repository": { "type": "git", diff --git a/atramhasis/static/package.json b/atramhasis/static/package.json index 4f6e9548..9882e7f7 100644 --- a/atramhasis/static/package.json +++ b/atramhasis/static/package.json @@ -1,6 +1,6 @@ { "name": "atramhasis", - "version": "1.3.1", + "version": "1.3.2", "description": "Node packages for public part of Atramhasis.", "repository": { "type": "git", diff --git a/docs/source/conf.py b/docs/source/conf.py index 97899eaf..2cb85a5b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -58,7 +58,7 @@ # The short X.Y version. version = '1.3' # The full version, including alpha/beta/rc tags. -release = '1.3.1' +release = '1.3.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index ec0c9748..442926ef 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,7 @@ def run(self): ] setup(name='atramhasis', - version='1.3.1', + version='1.3.2', description='A web based editor for thesauri adhering to the SKOS specification.', long_description=README + '\n\n' + CHANGES, long_description_content_type='text/x-rst',