Skip to content

Commit

Permalink
🔖(major) bump release to 1.0.0
Browse files Browse the repository at this point in the history
Added

- Add `events` and `assertions` attributes to OBF provider
- Add `read` method for `events` and `assertions` attributes of OBF provider

Changed

- Change providers methods to be asynchronous [BC]
- Return a `BadgeIssue` instance in the `issue` method [BC]
- Move badges methods to a `badges` attribute of OBF provider [BC]
- Change from `requests` to `httpx` for API requests
  • Loading branch information
wilbrdt committed Sep 14, 2023
1 parent 7fda3a7 commit 02b5d24
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,19 @@ Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.0.0] - 2023-09-06

### Added

- Add `events` and `assertions` attributes to OBF provider
- Add `read` method for `events` and `assertions` attributes of OBF provider

### Changed

- Change providers methods to be asynchronous [BC]
- Return a `BadgeIssue` instance in the `issue` method [BC]
- Add a `badges` attribute to OBF provider for badges methods [BC]
- Move badges methods to a `badges` attribute of OBF provider [BC]
- Change from `requests` to `httpx` for API requests
- Add `events` and `assertions` attributes to OBF provider
- Add `read` method for `events` and `assertions` attributes of OBF provider

## [0.2.1] - 2023-08-23

Expand All @@ -35,7 +40,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).

- Extract the OBF badge provider from the Joanie project

[Unreleased]: https://github.com/openfun/open-badges-client/compare/v0.2.1...main
[Unreleased]: https://github.com/openfun/open-badges-client/compare/v1.0.0...main
[1.0.0]: https://github.com/openfun/open-badges-client/compare/v0.2.1...v1.0.0
[0.2.1]: https://github.com/openfun/open-badges-client/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/openfun/open-badges-client/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/openfun/open-badges-client/compare/a253313...v0.1.0
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;;
[metadata]
name = obc
version = 0.2.1
version = 1.0.0
description = The Open Badges Client
long_description = file:README.md
long_description_content_type = text/markdown
Expand Down
2 changes: 1 addition & 1 deletion src/obc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""OBC: the Open Badge Client."""

__version__ = "0.2.1"
__version__ = "1.0.0"

0 comments on commit 02b5d24

Please sign in to comment.