Skip to content

Commit

Permalink
Merge branch 'hotfix/8.2.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbywater committed Nov 13, 2020
2 parents 36dd400 + f0fa3f4 commit f7ffebb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ before_install:

# Install Cassandra.
- sudo rm -rf /var/lib/cassandra/*
- wget http://www.us.apache.org/dist/cassandra/3.11.6/apache-cassandra-3.11.6-bin.tar.gz
&& tar -xzf apache-cassandra-3.11.6-bin.tar.gz
- wget http://www.us.apache.org/dist/cassandra/3.11.9/apache-cassandra-3.11.9-bin.tar.gz
&& tar -xzf apache-cassandra-3.11.9-bin.tar.gz

# Start Cassandra.
- sudo sh ./apache-cassandra-3.11.6/bin/cassandra -R
- sudo sh ./apache-cassandra-3.11.9/bin/cassandra -R

# Download Axon Server.
- ./dev/download_axon_server.sh
Expand Down
6 changes: 6 additions & 0 deletions docs/topics/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ systems of application, previously in the "application" package, has been
moved to a new "system" package.


Version 8.2.4 (released 12 Nov 2020)
--------------------------------------

Fixed issue with using Oracle database, where a trailing semicolon
in an SQL statement caused the "invalid character" error (ORA-00911).

Version 8.2.3 (released 19 May 2020)
--------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion eventsourcing/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "8.2.3"
__version__ = "8.2.4"
2 changes: 1 addition & 1 deletion eventsourcing/infrastructure/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ def insert_tracking_record(self) -> Any:
return self._insert_tracking_record

_insert_values_tmpl = (
"INSERT INTO {tablename} ({columns}) " "VALUES ({placeholders});"
"INSERT INTO {tablename} ({columns}) " "VALUES ({placeholders})"
)

@abstractmethod
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

axonserver_requires = ["axonclient<=0.0.99999"]

ray_requires = ["ray<=0.8.99999", "psutil", "setproctitle"]
ray_requires = ["ray<=0.8.5", "psutil", "setproctitle"]

thespian_requires = ["thespian<=3.10.99999"]

Expand Down

0 comments on commit f7ffebb

Please sign in to comment.