Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

All notable changes to this project will be documented in this file.

## [0.14.0] - 2026-04-09

### Miscellaneous Tasks

- chore: remove duplicated twisted dependency in pyproject.toml (#80) (FrenchGithubUser)
- chore: Remove hatch scripts and replace with built-in hatch utilities (#84) (Jason Little)
- chore: First re-formatting run (#84) (Jason Little)
- chore: pin jwcrypto to 1.5.6 or lower temporarily (#84) (Jason Little)
- add to .gitignore for .idea based IDE's (#83)

### Bug Fixes

- fix: prevent early return in PathList lookup when intermediate path fails (#81) (Niklas Zender)

## [0.13.0] - 2026-03-26

### Features
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"jwcrypto<=1.5.6",
"twisted",
]
version = "0.13.0"
version = "0.14.0"

[project.urls]
Documentation = "https://github.com/famedly/synapse-token-authenticator"
Expand Down
2 changes: 1 addition & 1 deletion synapse_token_authenticator/token_authenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@


class TokenAuthenticator:
__version__ = "0.13.0"
__version__ = "0.14.0"

def __init__(self, config: dict, account_handler: ModuleApi):
self.api = account_handler
Expand Down
Loading