File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ Changes for crate
5
5
Unreleased
6
6
==========
7
7
8
+ 2020/08/05 0.25.0
9
+ =================
10
+
8
11
- Added support for the ``RETURNING`` clause to the SQLAlchemy dialect. This
9
12
requires CrateDB 4.2 or greater. In case you use any server side generated
10
13
columns in your primary key constraint with earlier CrateDB versions, you can
Original file line number Diff line number Diff line change @@ -34,10 +34,7 @@ def read(path):
34
34
return f .read ()
35
35
36
36
37
- long_description = (
38
- read ('README.rst' )
39
- )
40
-
37
+ long_description = read ('README.rst' )
41
38
versionf_content = read ("src/crate/client/__init__.py" )
42
39
version_rex = r'^__version__ = [\'"]([^\'"]*)[\'"]$'
43
40
m = re .search (version_rex , versionf_content , re .M )
Original file line number Diff line number Diff line change 29
29
30
30
# version string read from setup.py using a regex. Take care not to break the
31
31
# regex!
32
- __version__ = "0.24 .0"
32
+ __version__ = "0.25 .0"
33
33
34
34
apilevel = "2.0"
35
35
threadsafety = 2
You can’t perform that action at this time.
0 commit comments