From b337dda8dfc2660a06e79a41cb44d6217be4b135 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 2 May 2020 10:22:00 +1000 Subject: [PATCH] bump version --- meta/version | 2 +- pylib/setup.py | 4 ++-- qt/setup.py | 4 ++-- rspy/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/meta/version b/meta/version index a0b09d3ef..0789fdb21 100644 --- a/meta/version +++ b/meta/version @@ -1 +1 @@ -2.1.25 +2.1.26 diff --git a/pylib/setup.py b/pylib/setup.py index 5bd127db3..2572e3101 100644 --- a/pylib/setup.py +++ b/pylib/setup.py @@ -16,11 +16,11 @@ install_requires = [ # maturin develop hides the package from pip - https://github.com/ankitects/anki/pull/600 if not os.environ.get("SKIP_ANKI_RSPY", False): - install_requires.append("ankirspy==2.1.25") # automatically updated 1 + install_requires.append("ankirspy==2.1.26") # automatically updated 1 setuptools.setup( name="anki", - version="2.1.25", # automatically updated 2 + version="2.1.26", # automatically updated 2 author="Ankitects Pty Ltd", description="Anki's library code", long_description="Anki's library code", diff --git a/qt/setup.py b/qt/setup.py index 650062163..ca8b57830 100644 --- a/qt/setup.py +++ b/qt/setup.py @@ -30,13 +30,13 @@ install_requires = [ "pyqt5>=5.9", 'psutil; sys.platform == "win32"', 'pywin32; sys.platform == "win32"', - "anki==2.1.25", # automatically updated 1 + "anki==2.1.26", # automatically updated 1 ] setuptools.setup( name="aqt", - version="2.1.25", # automatically updated 2 + version="2.1.26", # automatically updated 2 author="Ankitects Pty Ltd", description="Anki's Qt GUI code", long_description="Anki's QT GUI code", diff --git a/rspy/Cargo.toml b/rspy/Cargo.toml index b4352ad55..72a7c34a1 100644 --- a/rspy/Cargo.toml +++ b/rspy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ankirspy" -version = "2.1.25" # automatically updated +version = "2.1.26" # automatically updated edition = "2018" authors = ["Ankitects Pty Ltd and contributors "] license = "AGPL-3.0-or-later"