2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-09-16 15:41:34 +00:00

Update software version to 1.1.0 dev (#10318)

* Update software version to 1.1.0 dev

Bump master branch to 1.1.0 dev version

* Update MAX_VERSION to '2.0.0' in version.py

---------

Co-authored-by: Matthias Mair <code@mjmair.com>
This commit is contained in:
Oliver
2025-09-16 09:35:36 +10:00
committed by GitHub
parent 8a45bcc8c0
commit bb40b92896
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ from django.conf import settings
from .api_version import INVENTREE_API_TEXT, INVENTREE_API_VERSION
# InvenTree software version
INVENTREE_SW_VERSION = '0.18.0 dev'
INVENTREE_SW_VERSION = '1.1.0 dev'
logger = logging.getLogger('inventree')

View File

@@ -10,4 +10,4 @@ class VersionPlugin(InvenTreePlugin):
NAME = 'Sample Version Plugin'
DESCRIPTION = 'A simple plugin which shows how to use the version limits'
MIN_VERSION = '0.1.0'
MAX_VERSION = '1.0.0'
MAX_VERSION = '2.0.0'