You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2022/01/26 11:34:11 UTC

[incubator-ponymail-foal] branch master updated (997b96f -> 11c5e85)

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git.


    from 997b96f  Better stop handling; add refresh option
     new 700f732  Fix types
     new 11c5e85  Bump version

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 server/plugins/server.py | 2 ++
 server/server_version.py | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

[incubator-ponymail-foal] 02/02: Bump version

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git

commit 11c5e85a9f0da95bdf1b1f6476ed812d51733413
Author: Sebb <se...@apache.org>
AuthorDate: Wed Jan 26 11:33:59 2022 +0000

    Bump version
---
 server/server_version.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/server_version.py b/server/server_version.py
index 6fdd8d0..d1475e2 100644
--- a/server/server_version.py
+++ b/server/server_version.py
@@ -1,2 +1,2 @@
 # This file is generated by server/update_version.sh
-PONYMAIL_SERVER_VERSION = '8648be7'
+PONYMAIL_SERVER_VERSION = '700f732'

[incubator-ponymail-foal] 01/02: Fix types

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git

commit 700f7328eb3c261773253b1dacf9600dd834f7ad
Author: Sebb <se...@apache.org>
AuthorDate: Wed Jan 26 11:33:39 2022 +0000

    Fix types
---
 server/plugins/server.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/server/plugins/server.py b/server/plugins/server.py
index 8d7ddd4..d8b047d 100644
--- a/server/plugins/server.py
+++ b/server/plugins/server.py
@@ -55,3 +55,5 @@ class BaseServer:
     # provided by background.py
     library_version: str
     engine_version: str
+    running: bool
+    background_event: asyncio.Event