gmcapsule.Identity
visible
=> 8b8dba5b91c7c0366352e405ea103fee180b1f1a
[1mdiff --git a/README.md b/README.md[m [1mindex 05d2943..6df35b8 100644[m [1m--- a/README.md[m [1m+++ b/README.md[m [36m@@ -55,6 +55,10 @@[m [mThe log can be viewed via journalctl (or syslog):[m * API change: Extension modules get initialized separately in each worker thread. Instead of a `Capsule`, the extension module `init` method is passed a `Context`. `Capsule` is no longer available as global state.[m * API change: `Identity` no longer contains OpenSSL objects for the certificate and public key. Instead, they are provided as serialized in DER format.[m [m [32m+[m[32mv0.5.1:[m [32m+[m [32m+[m[32m* `Identity` class is available when importing the `gmcapsule` module.[m [32m+[m ### v0.4[m [m * Added built-in module "rewrite" that matches regular expressions against the request path and can rewrite the path or return a custom status for redirection, "Gone" messages, or other exceptional situations.[m [1mdiff --git a/gmcapsule/__init__.py b/gmcapsule/__init__.py[m [1mindex 9586881..175d234 100644[m [1m--- a/gmcapsule/__init__.py[m [1m+++ b/gmcapsule/__init__.py[m [36m@@ -491,13 +491,13 @@[m [mimport shlex[m import subprocess[m from pathlib import Path[m [m [31m-from .gemini import Server, Cache, Context[m [32m+[m[32mfrom .gemini import Server, Cache, Context, Identity[m from .markdown import to_gemtext as markdown_to_gemtext[m [m [m [31m-__version__ = '0.5.0'[m [32m+[m[32m__version__ = '0.5.1'[m __all__ = [[m [31m- 'Config', 'Cache', 'Context',[m [32m+[m[32m 'Config', 'Cache', 'Context', 'Identity',[m 'get_mime_type', 'markdown_to_gemtext'[m ][m [m
text/gemini; charset=utf-8
This content has been proxied by September (3851b).