-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fixed bug preventing proper updating of changed user data
- Loading branch information
1 parent
d74bb67
commit fba8c13
Showing
6 changed files
with
41 additions
and
87 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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Changes | ||
|
||
Version 0.0.1 | ||
## 0.6.0-beta2 (2024-12-19) | ||
|
||
- Fixed bug where user profile data was not being updated because comparison with initial data was not being made correctly. | ||
|
||
## Version 0.0.1 | ||
|
||
- Initial development version |
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 +1 @@ | ||
"0.5.8-beta0" | ||
"0.6.0-beta2" |
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
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,6 +1,6 @@ | ||
[project] | ||
name = "invenio-remote-user-data-kcworks" | ||
version = "0.5.8-beta0" | ||
version = "0.6.0-beta2" | ||
description = "An extension to draw user data from remote sources into the Knowledge Commons Works InvenioRDM instance" | ||
readme = "README.md" | ||
authors = [{ name = "Mesh Research", email = "[email protected]" }] | ||
|
@@ -104,16 +104,16 @@ requires = ["setuptools>=61.0.0", "wheel"] | |
build-backend = "setuptools.build_meta" | ||
|
||
[tool.bumpver] | ||
current_version = "0.5.8-beta0" | ||
current_version = "0.6.0-beta2" | ||
version_pattern = "MAJOR.MINOR.PATCH[-TAGNUM]" | ||
commit_message = "Bumping version {old_version} -> {new_version}." | ||
tag_message = "{new_version}" | ||
tag_scope = "default" | ||
pre_commit_hook = "" | ||
post_commit_hook = "" | ||
commit = true | ||
tag = true | ||
push = true | ||
commit = false | ||
tag = false | ||
push = false | ||
|
||
[tool.bumpver.file_patterns] | ||
"pyproject.toml" = [ | ||
|