Skip to content

Commit

Permalink
v0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
obfusk committed Oct 28, 2020
1 parent 156492b commit 4a5a2e5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

File : README.md
Maintainer : Felix C. Stegerman <[email protected]>
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+

<!-- }}}1 -->
Expand Down
6 changes: 3 additions & 3 deletions android/buildozer.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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 --^
# ===================================
Expand Down
2 changes: 1 addition & 1 deletion android/p4a-recipes/jiten/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down
6 changes: 3 additions & 3 deletions jiten/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
#
# File : jiten/version.py
# Maintainer : Felix C. Stegerman <[email protected]>
# 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
Expand All @@ -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:
Expand Down

0 comments on commit 4a5a2e5

Please sign in to comment.