Skip to content

Commit b3a38a1

Browse files
committed
bumpversion 2.2
1 parent dc6b0b0 commit b3a38a1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ __pycache__
2525
.testmondata
2626
Pipfile.lock
2727
poetry.lock
28+
pyproject.toml

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ django-concurrency is an optimistic lock [1]_ implementation for Django.
1212

1313
Supported Django versions:
1414

15-
- <=2.1.1 1.11.x, 2.1.x, 2.2.x, 3.x
16-
- >=2.2 3.x
15+
- <=2.1.1 supports 1.11.x, 2.1.x, 2.2.x, 3.x
16+
- >=2.2 supports 3.x
1717

1818

1919
It prevents users from doing concurrent editing in Django both from UI and from a

src/concurrency/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = 'sax'
22
default_app_config = 'concurrency.apps.ConcurrencyConfig'
33

4-
VERSION = __version__ = "2.2a"
4+
VERSION = __version__ = "2.2"
55
NAME = 'django-concurrency'

0 commit comments

Comments
 (0)