From e7628bf1751dd68ce5f35be8fd026f23adc26ae9 Mon Sep 17 00:00:00 2001 From: "Felix C. Stegerman" Date: Mon, 31 Aug 2020 17:02:15 +0200 Subject: [PATCH] v0.3.3 * v0.3.3 \o/ * document numeric_version in buildozer.spec --- README.md | 2 +- android/buildozer.spec | 13 +++++++++---- android/p4a-recipes/jiten/__init__.py | 2 +- jiten/cli.py | 6 +++--- 4 files changed, 14 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 639bc13..bbb77e5 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Date : 2020-08-31 Copyright : Copyright (C) 2020 Felix C. Stegerman - Version : v0.3.2 + Version : v0.3.3 License : AGPLv3+ diff --git a/android/buildozer.spec b/android/buildozer.spec index 364917f..a23bc78 100644 --- a/android/buildozer.spec +++ b/android/buildozer.spec @@ -6,7 +6,6 @@ source.dir = . source.include_exts = py source.exclude_dirs = bin,p4a-recipes source.exclude_patterns = Makefile,*.png -version = 0.3.2 requirements = python3,jiten requirements.source.jiten = .. icon.filename = %(source.dir)s/icon.png @@ -19,15 +18,21 @@ android.ndk = 20b #android.sdk_path = android.accept_sdk_license = True android.arch = arm64-v8a -# !!! DON'T FORGET TO UPDATE THIS !!! -# 0.3.2 -------------------vvvvvv -android.numeric_version = 1000302002 p4a.branch = develop #p4a.source_dir = p4a.local_recipes = ./p4a-recipes p4a.bootstrap = webview p4a.port = 29483 +# === DON'T FORGET TO UPDATE THIS === +version = 0.3.3 +android.numeric_version = 1000303002 +# always "1" -------------^||||||||| +# 0.3.3 ----> 00 03 03 ----^^^^^^||| +# #commits since last tag -------^^| +# 1 = armeabi-v7a, 2 = arm64-v8a --^ +# =================================== + [buildozer] log_level = 2 warn_on_root = 1 diff --git a/android/p4a-recipes/jiten/__init__.py b/android/p4a-recipes/jiten/__init__.py index 4fdf2b5..e6a1b01 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.0' + # version = '0.3.3' # url = 'https://github.com/obfusk/jiten/archive/v{version}.tar.gz' depends = ['setuptools', 'flask', 'click', 'sqlite3', 'libpcre'] diff --git a/jiten/cli.py b/jiten/cli.py index 0bbaa74..0d27b6a 100644 --- a/jiten/cli.py +++ b/jiten/cli.py @@ -5,10 +5,10 @@ # # File : jiten/cli.py # Maintainer : Felix C. Stegerman -# Date : 2020-08-19 +# Date : 2020-08-31 # # Copyright : Copyright (C) 2020 Felix C. Stegerman -# Version : v0.3.2 +# Version : v0.3.3 # License : AGPLv3+ # # -- ; }}}1 @@ -250,7 +250,7 @@ shell = True, cwd = _cwd) \ .decode().strip().replace("v", "", 1) else: - __version__ = "0.3.2" + __version__ = "0.3.3" name = "jiten" import click