diff --git a/README.md b/README.md index f2f0a26..937b00a 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ File : README.md Maintainer : Felix C. Stegerman - Date : 2020-10-25 + Date : 2020-10-28 Copyright : Copyright (C) 2020 Felix C. Stegerman - Version : v0.3.4 + Version : v0.3.5 License : AGPLv3+ diff --git a/android/buildozer.spec b/android/buildozer.spec index 840b749..36a6416 100644 --- a/android/buildozer.spec +++ b/android/buildozer.spec @@ -25,10 +25,10 @@ p4a.bootstrap = webview p4a.port = 29483 # === DON'T FORGET TO UPDATE THIS === -version = 0.3.4 -android.numeric_version = 1000304002 +version = 0.3.5 +android.numeric_version = 1000305002 # always "1" -------------^||||||||| -# 0.3.4 ----> 00 03 04 ----^^^^^^||| +# 0.3.5 ----> 00 03 05 ----^^^^^^||| # #commits since last tag -------^^| # 1 = armeabi-v7a, 2 = arm64-v8a --^ # =================================== diff --git a/android/p4a-recipes/jiten/__init__.py b/android/p4a-recipes/jiten/__init__.py index 7b1fffc..8cb6bba 100644 --- a/android/p4a-recipes/jiten/__init__.py +++ b/android/p4a-recipes/jiten/__init__.py @@ -3,7 +3,7 @@ class JitenRecipe(CompiledComponentsPythonRecipe): # name = 'jiten' - # version = '0.3.4' + # version = '0.3.5' # url = 'https://github.com/obfusk/jiten/archive/v{version}.tar.gz' depends = ['setuptools', 'flask', 'click', 'sqlite3', 'libpcre'] diff --git a/jiten/version.py b/jiten/version.py index 96c1b7a..ded6474 100644 --- a/jiten/version.py +++ b/jiten/version.py @@ -5,10 +5,10 @@ # # File : jiten/version.py # Maintainer : Felix C. Stegerman -# Date : 2020-10-24 +# Date : 2020-10-28 # # Copyright : Copyright (C) 2020 Felix C. Stegerman -# Version : v0.3.4 +# Version : v0.3.5 # License : AGPLv3+ # # -- ; }}}1 @@ -25,7 +25,7 @@ with open(_vsn) as f: __version__ = f.readline().strip().replace("v", "", 1) else: - __version__ = "0.3.4" + __version__ = "0.3.5" py_version = "Python " + sys.version.split()[0] if "PyPy" in sys.version: