From 0859ae81b65e04809d2430c0e5f55b48539e38e5 Mon Sep 17 00:00:00 2001 From: Sam Arbid Date: Thu, 8 Feb 2024 15:41:44 +0100 Subject: [PATCH] bump version number and update changelog --- CHANGES.md | 18 +++++++++++++++--- README.md | 9 +++++++++ invenio_subjects_cessda/__init__.py | 2 +- 3 files changed, 25 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 7d47dcc..2c38f8b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,14 +1,26 @@ # Changes +Version 1.1.2 + +- Add github actions for publishing to pypi +- Add github actions for testing +- add test badge to readme +- Remove requirements.txt + +Version 1.1.0 + +- update readme +- fix version number + Version 1.1.0 -- Update CESSDA vocabularies to 2024-02-01 - Introduce Auto fetch new versions for all vocabularies -- Refactor convert functionality and add sorting +- Bump update dependencies to their latest versions - Introduce debugging option to 'make run' command +- Refactor convert functionality and add sorting +- Update CESSDA vocabularies to 2024-02-01 - Add error handling to data fetching - Bump requirements.txt -- Bump update dependencies to their latest versions Version 1.0.0 diff --git a/README.md b/README.md index 008cc06..782a216 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,15 @@ https://vocabularies.cessda.eu/v2/codes/Variables-Relations/1.0.0/en ## Upload to pypi +Publishing will be done automatically by GitHub actions when a new tag is created. + +```bash +git tag vX.Y.Z +git push origin master vX.Y.Z +``` + +## manually upload to pypi + ```bash make install-package-tools # this will install twine (install-package-tools-pipenv if you use pipenv) make package # this will zip the package into dist dir diff --git a/invenio_subjects_cessda/__init__.py b/invenio_subjects_cessda/__init__.py index 84bb439..3524324 100644 --- a/invenio_subjects_cessda/__init__.py +++ b/invenio_subjects_cessda/__init__.py @@ -6,4 +6,4 @@ # modify it under the terms of the MIT License; see LICENSE file details. """CESSDA subject terms converter for InvenioRDM.""" -__version__ = "1.1.1" +__version__ = "1.1.2"