Skip to content

Commit ea2928f

Browse files
Prepare for release.
1 parent 023a8d1 commit ea2928f

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
44

5+
## [0.5.5] - 2022-10-26
6+
7+
### Fixed
8+
9+
- Return `id_token` on login since it can be useful in OIDC logout flow PR [#139](https://github.com/datajoint/pharus/pull/139)
10+
511
## [0.5.4] - 2022-10-20
612

713
### Fixed
@@ -188,6 +194,8 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
188194
- Support for DataJoint attribute types: `varchar`, `int`, `float`, `datetime`, `date`, `time`, `decimal`, `uuid`.
189195
- Check dependency utility to determine child table references.
190196

197+
[0.5.5]: https://github.com/datajoint/pharus/compare/0.5.4...0.5.5
198+
[0.5.4]: https://github.com/datajoint/pharus/compare/0.5.3...0.5.4
191199
[0.5.3]: https://github.com/datajoint/pharus/compare/0.5.2...0.5.3
192200
[0.5.2]: https://github.com/datajoint/pharus/compare/0.5.1...0.5.2
193201
[0.5.1]: https://github.com/datajoint/pharus/compare/0.5.0...0.5.1

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ To start the API server, use the command:
2929

3030
.. code-block:: bash
3131
32-
PHARUS_VERSION=0.5.3 docker-compose -f docker-compose-deploy.yaml up -d
32+
PHARUS_VERSION=0.5.5 docker-compose -f docker-compose-deploy.yaml up -d
3333
3434
To stop the API server, use the command:
3535

3636
.. code-block:: bash
3737
38-
PHARUS_VERSION=0.5.3 docker-compose -f docker-compose-deploy.yaml down
38+
PHARUS_VERSION=0.5.5 docker-compose -f docker-compose-deploy.yaml down
3939
4040
References
4141
----------

docker-compose-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# PHARUS_VERSION=0.5.3 docker-compose -f docker-compose-deploy.yaml pull
2-
# PHARUS_VERSION=0.5.3 docker-compose -f docker-compose-deploy.yaml up -d
1+
# PHARUS_VERSION=0.5.5 docker-compose -f docker-compose-deploy.yaml pull
2+
# PHARUS_VERSION=0.5.5 docker-compose -f docker-compose-deploy.yaml up -d
33
#
44
# Intended for production deployment.
55
# Note: You must run both commands above for minimal outage

pharus/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def api_version() -> str:
117117
Content-Type: application/json
118118
119119
{
120-
"version": "0.5.3"
120+
"version": "0.5.5"
121121
}
122122
123123
:statuscode 200: No error.

pharus/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Package metadata."""
2-
__version__ = "0.5.4"
2+
__version__ = "0.5.5"

0 commit comments

Comments
 (0)