Skip to content

Commit

Permalink
bump version number and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Samk13 committed Feb 8, 2024
1 parent 0647fe0 commit 0859ae8
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
18 changes: 15 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion invenio_subjects_cessda/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 0859ae8

Please sign in to comment.