-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
accacd3
commit 1838b52
Showing
3 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [0.3.0] - 2023-12-06 | ||
|
||
### Added | ||
|
||
- Generate types and api calls with openapi generator. | ||
- Version constant instead of parsing gemspec. | ||
|
||
|
||
### Deprecate | ||
|
||
- `user.signout()` -> `auth.revoke_user_refresh_tokens()` | ||
- `auth.authenticate_request()` -> `auth.validate_jwt()` | ||
|
||
|
||
### Possible Breaking Changes | ||
|
||
- Type names may change. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Passage | ||
VERSION = '0.2.3' | ||
VERSION = '0.3.0' | ||
end |